Sciwheel Browser Extension

Sciwheel Browser Extension

Browser Extension from Sciwheel

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "author": "Sciwheel Limited",
  "background": {
    "persistent": true,
    "page": "background.html"
  },
  "browser_action": {
    "default_title": "Sciwheel Browser Extension",
    "default_icon": {
      "19": "images/icon-19.png",
      "38": "images/icon-38.png",
      "128": "images/icon-128.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "file://*/*"
      ],
      "css": [
        "css/popup.css",
        "css/highlighter.css"
      ],
      "js": [
        "js/config.js",
        "js/jsonML.js",
        "js/helpers.js",
        "js/whitelist.js",
        "js/popup/init.js",
        "js/popup/templates.js",
        "js/popup/handlers.js",
        "js/highlighter/helpers.js",
        "js/highlighter/core.js",
        "js/highlighter/annotations.js",
        "js/highlighter/selectionGrabber.js",
        "js/highlighter/selectionScanner.js",
        "js/highlighter/ui.js",
        "js/pageObjectIds.js",
        "js/content_script.js",
        "js/run.js"
      ],
      "run_at": "document_idle",
      "all_frames": false
    }
  ],
  "description": "Browser Extension from Sciwheel",
  "icons": {
    "128": "images/icon-128.png"
  },
  "manifest_version": 2,
  "name": "Sciwheel Browser Extension",
  "permissions": [
    "tabs",
    "http://*/*",
    "https://*/*"
  ],
  "version": "52.0.0"
}