Website Rank

Website Rank

Website rank plugins only have one purpose: it is to save you from counting the order of results!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Website Rank",
  "description": "Website rank plugins only have one purpose: it is to save you from counting the order of results!",
  "version": "0.1.0",
  "manifest_version": 3,
  "icons": {
    "16": "/images/16x16.png",
    "32": "/images/32x32.png",
    "48": "/images/48x48.png",
    "128": "/images/128x128.png"
  },
  "background": {
    "service_worker": "/scripts/bg.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.google.com/*"
      ],
      "css": [
        "/styles/style.css"
      ],
      "js": [
        "/scripts/cs.js"
      ]
    }
  ],
  "host_permissions": [
    "https://www.google.com/*"
  ]
}