Examine source code of Sound Hints

Inspect and view changes in Sound Hints source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 3,
  "name": "Sound Hints",
  "version": "2.7.1",
  "default_locale": "en",
  "description": "__MSG_popupDescTitle__",
  "icons": {
    "16": "pluspell16.png",
    "128": "pluspell128.png"
  },
  "permissions": [
    "storage"
  ],
  "background": {
    "scripts": [
      "plu-extension/pluService.mjs"
    ],
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "css": [
        "plu-base/PluContent.css"
      ],
      "js": [
        "plu-extension/pluContentMain.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "plu-base/Logger.mjs",
        "plu-base/base.mjs",
        "plu-base/DetailBase.mjs",
        "plu-base/PluDom.mjs",
        "plu-extension/pluMessage.mjs",
        "plu-extension/pluContent.mjs"
      ]
    }
  ],
  "action": {
    "default_icon": {
      "16": "pluspell16.png"
    },
    "default_title": "Sound Hints",
    "default_popup": "plu-extension/pluPopup.html"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{01b71979-258b-43c6-8250-b55294cd3ba7}"
    }
  }
}