Retheme

Retheme

Enjoy the web without distractions. Removes ads and other annoying content from popular sites.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Retheme",
  "description": "Enjoy the web without distractions. Removes ads and other annoying content from popular sites.",
  "version": "0.3.0",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "exclude_matches": [
        "*://*/*.xml",
        "*://extensions/*"
      ],
      "type": "module",
      "js": [
        "extension/inject.js"
      ],
      "run_at": "document_start"
    }
  ],
  "background": {
    "service_worker": "extension/background.js",
    "type": "module",
    "exclude_matches": [
      "*://*/*.xml",
      "*://extensions/*"
    ]
  },
  "action": {
    "default_popup": "index.html",
    "default_icon": {
      "16": "./icons/re.logo.16x16.png",
      "32": "./icons/re.logo.32x32.png",
      "48": "./icons/re.logo.48x48.png",
      "128": "./icons/re.logo.128x128.png"
    }
  },
  "permissions": [
    "storage",
    "tabs"
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "./icons/re.logo.32x32.png"
      ]
    }
  ],
  "icons": {
    "16": "./icons/re.logo.16x16.png",
    "32": "./icons/re.logo.32x32.png",
    "48": "./icons/re.logo.48x48.png",
    "128": "./icons/re.logo.128x128.png"
  },
  "host_permissions": [
    "<all_urls>"
  ]
}