ScreenCapture

ScreenCapture

ScreenCapture

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "page": "background.html",
    "persistent": true
  },
  "browser_action": {
    "default_icon": {
      "19": "appicon_19x19.png",
      "38": "appicon_38x38.png"
    },
    "default_popup": "popup.html",
    "default_title": "ScreenCapture"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "scripts/mx/jquery.js",
        "scripts/mx/controller.js"
      ],
      "match_about_blank": true,
      "matches": [
        "<all_urls>"
      ]
    },
    {
      "all_frames": true,
      "js": [
        "scripts/content/preload.js"
      ],
      "match_about_blank": true,
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_start"
    },
    {
      "all_frames": true,
      "js": [
        "scripts/content/postload.js"
      ],
      "match_about_blank": true,
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_end"
    }
  ],
  "description": "ScreenCapture",
  "icons": {
    "16": "icon_16.png",
    "48": "icon_48.png",
    "128": "icon_128.png"
  },
  "manifest_version": 2,
  "name": "ScreenCapture",
  "permissions": [
    "<all_urls>",
    "tabs",
    "activeTab",
    "http://*/*",
    "https://*/*",
    "downloads",
    "storage",
    "notifications",
    "storage",
    "unlimitedStorage",
    "activeTab"
  ],
  "version": "1.6"
}