Website Randomizer

Website Randomizer

Website Randomizer is a fun little extension that randomizes Images, Text, and Elements on websites.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Website Randomizer",
  "version": "4.3",
  "description": "Website Randomizer is a fun little extension that randomizes Images, Text, and Elements on websites.",
  "permissions": [
    "storage"
  ],
  "options_ui": {
    "page": "./options/options.html",
    "open_in_tab": false
  },
  "action": {
    "default_popup": "./popup/popup.html",
    "default_icon": "./icons/wr_16.png"
  },
  "icons": {
    "16": "./icons/wr_16.png",
    "32": "./icons/wr_32.png",
    "48": "./icons/wr_48.png",
    "128": "./icons/wr_128.png"
  },
  "background": {
    "service_worker": "./background/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "./content/content.js"
      ],
      "css": [
        "./content/content.css"
      ]
    }
  ]
}