ShutterKeys

ShutterKeys

Shutterkeys is a very simple Google Chrome extension which helps you to copy keywords from a Shutterstock image/vector/video page.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "ShutterKeys",
  "description": "Shutterkeys is a very simple Google Chrome extension which helps you to copy keywords from a Shutterstock image/vector/video page.",
  "version": "2.2",
  "permissions": [
    "storage"
  ],
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "icon16.png",
    "32": "icon32.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.shutterstock.com/*"
      ],
      "js": [
        "popup.js",
        "content.js"
      ]
    }
  ],
  "manifest_version": 2
}