Examine source code of Atalhos Acessíveis

Inspect and view changes in Atalhos Acessíveis 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
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_appName__",
  "version": "1.1.2",
  "description": "__MSG_appDescription__",
  "default_locale": "pt_BR",
  "permissions": [
    "activeTab",
    "storage"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "*.wav",
        "*.js",
        "*.css",
        "*.json",
        "*.jpg"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "icons": {
    "128": "assets/images/icon-128.png"
  },
  "action": {
    "default_popup": "default.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "assets/js/main.js"
      ]
    }
  ],
  "background": {
    "service_worker": "assets/js/background.js"
  }
}