GSC Guardian

GSC Guardian

Navigate SEO changes proactively with real-time tracking and analysis of Google's core updates.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "GSC Guardian",
  "description": "Navigate SEO changes proactively with real-time tracking and analysis of Google's core updates.",
  "version": "1.3",
  "manifest_version": 3,
  "author": "@dasfnyc, @shatnerlecruix",
  "oauth2": {
    "client_id": "517542813184-lgj04e55jc1vnh0k3bk45ch3com1rfhp.apps.googleusercontent.com",
    "scopes": [
      "https://www.googleapis.com/auth/drive.file"
    ]
  },
  "permissions": [
    "tabs",
    "storage",
    "identity"
  ],
  "host_permissions": [
    "https://status.search.google.com/*"
  ],
  "icons": {
    "16": "/assets/icons/16.png",
    "32": "/assets/icons/32.png",
    "128": "/assets/icons/128.png"
  },
  "background": {
    "scripts_for_popup_page": [
      "/js/GLOBALS.js",
      "/libraries/delay.js",
      "/libraries/extension_start_auth.js",
      "/libraries/items_modifiers.js",
      "/libraries/status_header.js",
      "/libraries/api_storage.js",
      "/libraries/api_tabs.js",
      "/libraries/app_options.js",
      "/js/popup_context/ui/components.js",
      "/js/popup_context/ui/update_components.js",
      "/js/popup_context/onchanged_storage.js",
      "/js/popup_context/context_messaging.js",
      "/js/popup_context/google_oauth_actions.js",
      "/js/popup_context/main.js"
    ],
    "scripts_for_options_page": [
      "/js/GLOBALS.js",
      "/libraries/delay.js",
      "/libraries/extension_start_auth.js",
      "/libraries/items_modifiers.js",
      "/libraries/status_header.js",
      "/libraries/api_storage.js",
      "/libraries/api_tabs.js",
      "/libraries/app_options.js",
      "/js/background_context/OPTIONS_PAGE/ui/components.js",
      "/js/background_context/OPTIONS_PAGE/ui/update_components.js",
      "/js/background_context/OPTIONS_PAGE/onchanged_storage.js",
      "/js/background_context/OPTIONS_PAGE/main.js"
    ],
    "SW_scripts": [
      "/js/GLOBALS.js",
      "/libraries/api_storage.js",
      "/libraries/api_tabs.js",
      "/libraries/delay.js",
      "/libraries/xhr.js",
      "/libraries/api_identity.js",
      "/libraries/google_search_incidents_status_api.js",
      "/libraries/google_spreadsheets_api.js",
      "/js/background_context/context_messaging.js",
      "/js/background_context/on_installed.js",
      "/js/background_context/reload_all_target_tabs.js",
      "/js/background_context/google_oauth_actions.js",
      "/js/background_context/spreadsheet_api_actions.js",
      "/js/background_context/onchanged_storage.js"
    ],
    "service_worker": "/js/background_context/main.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://search.google.com/*"
      ],
      "run_at": "document_end",
      "css": [
        "/css/status_header.css",
        "/css/animations.css",
        "/css/page_context/page.css"
      ],
      "js": [
        "/js/GLOBALS.js",
        "/libraries/api_storage.js",
        "/libraries/delay.js",
        "/libraries/items_modifiers.js",
        "/libraries/CSV.js",
        "/js/page_context/UI.js",
        "/js/page_context/context_messaging.js",
        "/js/page_context/onchanged_storage.js",
        "/js/page_context/google_search_console_website_actions.js",
        "/js/page_context/main.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "/css/*",
        "/assets/*"
      ],
      "matches": [
        "https://search.google.com/*"
      ]
    }
  ],
  "action": {
    "default_icon": {
      "16": "/assets/icons/16.png",
      "32": "/assets/icons/32.png",
      "128": "/assets/icons/128.png"
    },
    "default_popup": "/html/popup_context/popup.html"
  }
}