Just another SEO Extension

Just another SEO Extension

Your SEO Swiss Army Knife

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Just another SEO Extension",
  "description": "Your SEO Swiss Army Knife",
  "version": "1.1.1",
  "manifest_version": 3,
  "background": {
    "service_worker": "contextMenu.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "injectUtils.js",
        "background.js"
      ]
    }
  ],
  "action": {
    "default_popup": "index.html",
    "default_icon": "./logo198.png"
  },
  "permissions": [
    "scripting",
    "storage",
    "tabs",
    "contextMenus"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "icons": {
    "198": "./logo198.png"
  }
}