Examine source code of Simple Speeddial

Inspect and view changes in Simple Speeddial 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": "Simple Speeddial",
  "version": "1.0.12",
  "description": "Simple Speeddial extension.",
  "icons": {
    "48": "asserts/icon48.png"
  },
  "permissions": [
    "bookmarks",
    "storage",
    "unlimitedStorage",
    "tabs",
    "favicon",
    "activeTab",
    "<all_urls>"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "optional_host_permissions": [
    "https://*/"
  ],
  "chrome_url_overrides": {
    "newtab": "newtab_page/index.html"
  },
  "background": {
    "service_worker": "background/background-script.js",
    "type": "module"
  },
  "action": {
    "default_popup": "browser_actions/bookmark_menu.html"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "_favicon/*"
      ],
      "matches": [
        "<all_urls>"
      ],
      "extension_ids": [
        "*"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}