AMO-Safe Skeleton Firefox

Examine source code of AMO-Safe Skeleton

By: JBO
Inspect and view changes in AMO-Safe Skeleton source codes across current and past versions
Please login to examine the extension's source code.
manifest.json
{
  "manifest_version": 2,
  "name": "AMO-Safe Skeleton",
  "version": "1.0.0",
  "description": "A minimal, AMO-compliant Firefox extension skeleton that demonstrates safe practices: no inline scripts, no remote code, and minimal permissions.",
  "icons": {
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "sample-addon-amo@example.com",
      "strict_min_version": "78.0"
    }
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "permissions": [
    "storage",
    "activeTab"
  ],
  "browser_action": {
    "default_title": "AMO-Safe Skeleton",
    "default_popup": "popup/popup.html",
    "default_icon": "icons/icon48.png"
  },
  "options_ui": {
    "page": "options/options.html",
    "open_in_tab": true
  }
}

Best AMO-Safe Skeleton Alternatives

Here are some Firefox add-ons that are similar to AMO-Safe Skeleton: