ITONICS Web Clipper

ITONICS Web Clipper

Easily clip web content with the ITONICS Web Clipper.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "ITONICS Web Clipper",
  "description": "Easily clip web content with the ITONICS Web Clipper.",
  "version": "3.2.1.2",
  "icons": {
    "16": "icons/icon.png",
    "32": "icons/icon32.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "browser_action": {
    "default_icon": "icons/icon.png",
    "default_title": "ITONICS Suite Web Clipper"
  },
  "permissions": [
    "activeTab",
    "storage",
    "tabs",
    "<all_urls>"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "css": [
        "assets/stylesheet/iframe.css",
        "assets/stylesheet/content.css"
      ],
      "js": [
        "assets/vendor/jquery-3.3.1.min.js",
        "assets/vendor/underscore-min.js",
        "js/content_script.js"
      ]
    }
  ],
  "content_security_policy": "script-src 'self'; object-src 'self'",
  "background": {
    "scripts": [
      "js/background.js"
    ]
  },
  "web_accessible_resources": [
    "/contentFrame.html",
    "icons/loader.gif",
    "icons/plus.png"
  ]
}