Image Background Color Picker

Image Background Color Picker

Lets you choose a background color for plain images.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "applications": {
    "gecko": {
      "id": "[email protected]"
    }
  },
  "name": "Image Background Color Picker",
  "short_name": "IBCP",
  "version": "1.1.11",
  "description": "Lets you choose a background color for plain images.",
  "author": "[email protected]",
  "icons": {
    "16": "/images/icon-16.png",
    "48": "/images/icon-48.png",
    "128": "/images/icon-128.png"
  },
  "options_ui": {
    "page": "/options.html",
    "chrome_style": true
  },
  "background": {
    "scripts": [
      "/background.js"
    ],
    "persistent": false
  },
  "permissions": [
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "/content.js"
      ],
      "css": [
        "/content.css"
      ],
      "run_at": "document_start"
    }
  ]
}