Search Console Everywhere

Search Console Everywhere

Access Google Search Console with one click. With this extension you can view the search console data from any tab

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "version": "1.1.1",
  "name": "Search Console Everywhere",
  "description": "Access Google Search Console with one click. With this extension you can view the search console data from any tab",
  "action": {
    "default_popup": "index.html"
  },
  "icons": {
    "16": "icons/Icon 16.png",
    "32": "icons/Icon 32.png",
    "64": "icons/Icon 64.png",
    "128": "icons/Icon 128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "storage",
    "notifications",
    "sidePanel",
    "tabs",
    "activeTab",
    "contextMenus"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "side_panel": {
    "default_path": "sidepanel.html"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "icons/*",
        "sidepanel.html"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}