Notebook Web Clipper

Notebook Web Clipper

Clear the clutter. Clip the web. Save to Notebook. Clip content from the web to your Notebook with Web Clipper. Clipped content, saved as Note Cards, are immediately synced across your devices. Web Clipper can also be used to create note cards.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "applications": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "48.0"
    }
  },
  "manifest_version": 2,
  "name": "Notebook Web Clipper",
  "description": "Clear the clutter. Clip the web. Save to Notebook.",
  "version": "2.1.4",
  "background": {
    "scripts": [
      "vendor/babelpolyfill/babel-polyfill-6.26.0.js",
      "dist/clipper-background.bundle.js",
      "vendor/sanitize/sanitize.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "file://*/*"
      ],
      "js": [
        "vendor/babelpolyfill/babel-polyfill-6.26.0.js",
        "initial-load.js",
        "vendor/readability/Readability.js",
        "vendor/security/security.min.js",
        "vendor/jquery/jquery-3.1.0.min.js",
        "vendor/zoho/annotator/fcomponents_annotator.js"
      ],
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    "html/*",
    "images/icn-success-clipping.png",
    "images/icn-close-popup.png",
    "images/*",
    "css/*",
    "js/*",
    "fonts/*",
    "vendor/*"
  ],
  "browser_action": {
    "default_icon": {
      "19": "assets/icons/notebook-icon.png",
      "38": "assets/icons/[email protected]",
      "128": "assets/icons/notebook-128.png"
    }
  },
  "icons": {
    "16": "assets/icons/notebook-icon.png",
    "32": "assets/icons/[email protected]",
    "48": "assets/icons/notebook-128.png",
    "128": "assets/icons/notebook-128.png"
  },
  "default_locale": "en",
  "content_security_policy": "script-src 'self'; object-src 'self';",
  "permissions": [
    "tabs",
    "activeTab",
    "storage",
    "cookies",
    "http://*/*",
    "https://*/*",
    "contextMenus",
    "unlimitedStorage",
    "webNavigation",
    "<all_urls>"
  ]
}