Klippper: Notion Web Clipper

Klippper: Notion Web Clipper

Klippper is an advanced Notion Web clipper, it helps you save webpages to Notion from the browser without switching tabs

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "Klippper is an advanced Notion Web clipper, it helps you save webpages to Notion from the browser without switching tabs",
  "version": "0.0.0.20",
  "manifest_version": 3,
  "name": "Klippper: Notion Web Clipper",
  "background": {
    "service_worker": "background.bundle.js"
  },
  "action": {},
  "permissions": [
    "storage",
    "tabs",
    "scripting",
    "contextMenus"
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "icons": {
    "128": "klippperLogo.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "<all_urls>"
      ],
      "js": [
        "contentScript.bundle.js"
      ],
      "css": [
        "content.styles.css"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "popup.html",
        "content.styles.css",
        "klippperLogo.png"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}