OLget Downloader

OLget Downloader

Download Everything.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "http://clients2.google.com/service/update2/crx",
  "name": "OLget Downloader",
  "manifest_version": 2,
  "version": "3.1.3",
  "options_page": "option.html",
  "description": "Download Everything.",
  "icons": {
    "16": "images/icon16.png",
    "32": "images/icon32.png",
    "48": "images/icon48.png",
    "64": "images/icon64.png"
  },
  "browser_action": {
    "default_icon": "images/icon32.png",
    "default_title": "OLget Downloader",
    "default_popup": "popup.html"
  },
  "homepage_url": "http://olget.com",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "sample.js"
      ],
      "css": [
        "main.css"
      ]
    }
  ],
  "permissions": [
    "http://*/*",
    "https://*/*",
    "contextMenus",
    "tabs",
    "notifications"
  ]
}