any-peek

any-peek

peek any web page from the top icon

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "any-peek",
  "manifest_version": 2,
  "version": "2.0.5.8",
  "icons": {
    "16": "icon.png",
    "32": "icon.png",
    "48": "icon.png"
  },
  "permissions": [
    "history",
    "contextMenus",
    "clipboardWrite",
    "clipboardRead",
    "webRequest",
    "webRequestBlocking",
    "tabs",
    "https://*/*",
    "http://*/*"
  ],
  "options_page": "options.html",
  "background": {
    "scripts": [
      "/bg.js"
    ]
  },
  "browser_action": {
    "default_icon": {
      "16": "icon.png",
      "32": "icon.png",
      "48": "icon.png"
    },
    "default_title": "Peek Any page",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "css": [],
      "js": [
        "jquery-3.2.1.min.js",
        "cscript.js"
      ],
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "run_at": "document_end"
    }
  ]
}