Background image downloader

Background image downloader

This extension is created to enable background image download from context menu.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Background image downloader",
  "version": "1.0.0",
  "manifest_version": 2,
  "description": "__MSG_description__",
  "homepage_url": "http://github.com/CYB3RL1F3",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "default_locale": "en",
  "background": {
    "scripts": [
      "src/bg/background.js"
    ],
    "persistent": true
  },
  "permissions": [
    "downloads",
    "contextMenus",
    "idle",
    "activeTab"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "src/inject/inject.js"
      ]
    }
  ]
}