Cookie to Biscuit

Cookie to Biscuit

Replaces the word 'cookie' with 'biscuit' on British .uk websites.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "action": {
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "js": [
        "main.js"
      ],
      "matches": [
        "*://*.uk/*"
      ]
    }
  ],
  "description": "Replaces the word 'cookie' with 'biscuit' on British .uk websites.",
  "icons": {
    "128": "icon128.png"
  },
  "manifest_version": 3,
  "name": "Cookie to Biscuit",
  "options_ui": {
    "open_in_tab": true,
    "page": "options.html"
  },
  "permissions": [
    "activeTab",
    "storage"
  ],
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "1.0.2"
}