Shoot & Share Auto-Favorite

Shoot & Share Auto-Favorite

Automatically favorites any image you vote for

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Shoot & Share Auto-Favorite",
  "version": "1.5",
  "description": "Automatically favorites any image you vote for",
  "manifest_version": 2,
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "options_page": "options.html",
  "permissions": [
    "https://contest.shootandshare.com/*",
    "downloads",
    "declarativeContent",
    "storage"
  ],
  "page_action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "images/get_started16.png",
      "32": "images/get_started32.png",
      "48": "images/get_started48.png",
      "128": "images/get_started128.png"
    }
  },
  "icons": {
    "16": "images/get_started16.png",
    "32": "images/get_started32.png",
    "48": "images/get_started48.png",
    "128": "images/get_started128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://contest.shootandshare.com/*"
      ],
      "js": [
        "key_event.js"
      ],
      "run_at": "document_start"
    }
  ]
}