Immediate Shot

Immediate Shot

Immediate Shot is a Chrome Extension that takes screenshots quickly with one click.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Immediate Shot",
  "version": "0.1.1",
  "description": "__MSG_msg_desc__",
  "default_locale": "en",
  "background": {
    "persistent": false,
    "scripts": [
      "background.bundle.js"
    ]
  },
  "content_scripts": [
    {
      "js": [
        "page.bundle.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "browser_action": {
    "default_icon": {
      "128": "128.png"
    }
  },
  "icons": {
    "32": "32.png",
    "48": "48.png",
    "128": "128.png"
  },
  "permissions": [
    "activeTab",
    "tabs",
    "storage",
    "background",
    "contextMenus",
    "downloads"
  ],
  "options_ui": {
    "page": "options.html",
    "chrome_style": true
  },
  "manifest_version": 2
}