Examine source code of GSC Helper by searchanalyzer.io

Inspect and view changes in GSC Helper by searchanalyzer.io 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,
  "version": "1.5.1",
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_icon": "icons/logo-48.png",
    "default_title": "GSC Helper by searchanalyzer.io"
  },
  "content_scripts": [
    {
      "js": [
        "content-script.js"
      ],
      "matches": [
        "*://search.google.com/search-console*",
        "*://search.google.com/u/*/search-console*"
      ],
      "exclude_matches": [
        "*://search.google.com/search-console/not-verified*",
        "*://search.google.com/u/*/search-console/not-verified*"
      ],
      "run_at": "document_end"
    },
    {
      "js": [
        "content-script-not-verified.js"
      ],
      "css": [
        "content-script-not-verified.css"
      ],
      "matches": [
        "*://search.google.com/search-console/not-verified*",
        "*://search.google.com/u/*/search-console/not-verified*"
      ],
      "run_at": "document_end"
    },
    {
      "js": [
        "content-scriptAll.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "exclude_matches": [
        "*://search.google.com/search-console*",
        "*://search.google.com/u/*/search-console*"
      ],
      "run_at": "document_end"
    }
  ],
  "description": "Streamlines your Google Search Console workflows. Data aggregation, quick-links and much more.",
  "homepage_url": "https://www.searchanalyzer.io/gsc-helper-browser-extension",
  "icons": {
    "48": "icons/logo-48.png",
    "96": "icons/logo-96.png"
  },
  "name": "GSC Helper by searchanalyzer.io",
  "permissions": [
    "tabs",
    "notifications",
    "clipboardWrite",
    "storage",
    "contextMenus"
  ],
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}