Google rank checker

Google rank checker

With Google rank checker you don't need to go up and down to locate your site in google search results.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Google rank checker",
  "version": "0.6.0",
  "description": "With Google rank checker you don't need to go up and down to locate your site in google search results.",
  "permissions": [
    "tabs",
    "activeTab",
    "storage"
  ],
  "host_permissions": [
    "https://www.google.com/"
  ],
  "background": {
    "service_worker": "bg-loader.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.google.com/*"
      ],
      "js": [
        "storage.js",
        "content.js"
      ],
      "css": [
        "styles.css"
      ]
    }
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "images/pagerank16.png",
      "32": "images/pagerank32.png",
      "48": "images/pagerank48.png",
      "128": "images/pagerank128.png"
    }
  },
  "icons": {
    "16": "images/pagerank16.png",
    "32": "images/pagerank32.png",
    "48": "images/pagerank48.png",
    "128": "images/pagerank128.png"
  },
  "options_page": "settings.html"
}