Websites Background Changer

Websites Background Changer

Change most of the websites' background to any images. Right click your favorite image on other websites or local image opened in the browser to choose it as the background image. Control the opacity or turn on/off by clicking the icon of the addon.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Websites Background Changer",
  "description": "Change the websites' background to any images.",
  "version": "2.0",
  "permissions": [
    "contextMenus",
    "storage",
    "unlimitedStorage",
    "tabs"
  ],
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "all_frames": false,
      "js": [
        "jquery-3.4.1.min.js",
        "content_script.js"
      ]
    },
    {
      "matches": [
        "file:///*"
      ],
      "all_frames": false,
      "js": [
        "jquery-3.4.1.min.js",
        "file.js"
      ]
    }
  ],
  "manifest_version": 2
}