downloadbox

downloadbox

downloadbox extension

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "downloadbox",
  "version": "1.0.0",
  "description": "downloadbox extension",
  "manifest_version": 2,
  "browser_action": {
    "default_title": "downloadbox",
    "default_icon": "images/logo-128.png",
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "images/logo-16.png",
    "32": "images/logo-32.png",
    "48": "images/logo-48.png",
    "64": "images/logo-64.png",
    "256": "images/logo-256.png"
  },
  "permissions": [
    "contextMenus",
    "<all_urls>",
    "tabs",
    "http://*/*",
    "https://*/*",
    "*://*/*",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "selection.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "background": {
    "persistent": false,
    "scripts": [
      "background.js"
    ]
  }
}