Capture.Chrome

Capture.Chrome

Capture content from Chrome

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "page": "captureBkgd.html"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "captureCtx.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*",
        "file://*/*"
      ]
    }
  ],
  "description": "Capture content from Chrome",
  "icons": {
    "16": "i_sq16.png",
    "48": "i_sq48.png",
    "128": "i_sq128.png"
  },
  "browser_action": {
    "default_icon": {
      "19": "i_sq19_gray.png",
      "38": "i_sq38_gray.png"
    },
    "default_popup": "capturePopup.html"
  },
  "manifest_version": 2,
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAiN9QBx9ABtmp5vjjCPu70A09vpc0qRSrWqK7Cd3Yu+C8036XwSMl5CfnSMtJXXrEin4khVot/fBWHFxL59WXZgQd4N69H28lnPb+pqSrFBX3PLoovpBlIWIymCSIdpoZNTy3faxJmIDye507ZIEI5+WqNU2gZGdNGGUWuQRl3hAICKpF4lrMTqEoCpGWV3loaCpdFjximGEOjOWnps8LVR+F6KcGyy3wOU5DDSaNLgLB5n75sIjPpwGb+yJHqSr/G8+8cp1QzhObNR4xG9jKZK400GShPtG4GSs9yrjvRyQosMSCvFO0CaPOqB/5uNXkjt9hbL6ZBjVwqwx9YbmURQIDAQAB",
  "name": "Capture.Chrome",
  "permissions": [
    "nativeMessaging",
    "tabs",
    "http://*/*",
    "https://*/*"
  ],
  "version": "8.1.11"
}