Websites ranks and Google search options

Websites ranks and Google search options

Popularity ratings and search options in Google search results

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Websites ranks and Google search options",
  "description": "Popularity ratings and search options in Google search results",
  "version": "9.4",
  "manifest_version": 3,
  "icons": {
    "16": "/images/16.png",
    "32": "/images/32.png",
    "48": "/images/48.png",
    "128": "/images/128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "run_at": "document_start",
      "js": [
        "cherubiniScript.js"
      ]
    }
  ],
  "host_permissions": [
    "https://api.similarweb.com/*",
    "https://plugin.myip.ms/*"
  ],
  "action": {
    "default_icon": {
      "16": "images/16.png",
      "24": "images/32.png",
      "32": "images/32.png"
    },
    "default_title": "Click to choose what to hide in google search results and other options.",
    "default_popup": "popup.html"
  },
  "background": {
    "service_worker": "backgroundBadge.js",
    "run_at": "document_idle"
  },
  "permissions": [
    "storage"
  ]
}