Quick Capture

Quick Capture

One key (default: F2) saves the screen to the gallery. Click the camera icon on the toolbar to go to the gallery page. Images can be downloaded from there. I made this for use in a mahjong game.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "__MSG_extensionName__",
  "description": "__MSG_extensionDescription__",
  "version": "1.7.9",
  "default_locale": "en",
  "background": {
    "scripts": [
      "browser-polyfill.min.js",
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "browser-polyfill.min.js",
        "content.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "audio/shutter.mp3"
  ],
  "browser_action": {
    "browser_style": true,
    "default_icon": {
      "16": "icons/16.png",
      "32": "icons/32.png"
    },
    "default_title": "__MSG_browserActionTitle__"
  },
  "permissions": [
    "<all_urls>",
    "activeTab",
    "storage"
  ],
  "icons": {
    "16": "icons/16.png",
    "32": "icons/32.png",
    "48": "icons/48.png",
    "64": "icons/64.png",
    "96": "icons/96.png"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{e2ae7a7e-b6cd-4248-9c6f-5d4c0c2ca223}"
    }
  }
}