Chevereto download button

Chevereto download button

Add function to download images on Chevereto sites

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "version": "0.4",
  "default_locale": "en",
  "name": "__MSG_name__",
  "short_name": "__MSG_name__",
  "description": "__MSG_description__",
  "author": "Wink",
  "icons": {
    "16": "icons/vk_16.png",
    "32": "icons/vk_32.png",
    "48": "icons/vk_48.png",
    "64": "icons/vk_64.png",
    "128": "icons/vk_128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "js": [
        "content/content.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "permissions": [
    "downloads",
    "notifications",
    "activeTab"
  ]
}