keepClipper - web clipper for google keep

keepClipper - web clipper for google keep

keepClipper insert clipped web contents directly into google keep. No config required. Highlighter

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "minimum_chrome_version": "112",
  "offline_enabled": true,
  "default_locale": "en",
  "name": "__MSG_extName__",
  "short_name": "keepClipper",
  "description": "__MSG_extDescription__",
  "version": "0.0.28",
  "author": "NoteRail",
  "icons": {
    "16": "icon.png",
    "32": "icon_32.png",
    "128": "icon_128.png"
  },
  "action": {
    "default_title": "Open keepClipper"
  },
  "side_panel": {
    "default_path": "panel/index.html"
  },
  "options_page": "options/index.html",
  "background": {
    "service_worker": "background/background.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "https://notes-pa.clients6.google.com/static/proxy.html?*"
      ],
      "js": [
        "scripts/xhr.js"
      ],
      "run_at": "document_start",
      "all_frames": true,
      "world": "MAIN"
    },
    {
      "matches": [
        "https://notes-pa.clients6.google.com/static/proxy.html?*"
      ],
      "js": [
        "scripts/msg-proxy.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Alt+K",
        "windows": "Alt+K",
        "mac": "Alt+K",
        "linux": "Alt+K"
      }
    }
  },
  "web_accessible_resources": [
    {
      "resources": [
        "scripts/screenshot/crop-box-7JCVK46O.js",
        "scripts/screenshot/shot-cropper-QS2WOHXT.css",
        "scripts/highlighter/Highlighter.js",
        "scripts/highlighter/highlighterCmd.js",
        "scripts/highlighter/HighlightRange-3C6JRVT3.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "permissions": [
    "activeTab",
    "contextMenus",
    "sidePanel",
    "storage",
    "scripting"
  ],
  "host_permissions": [
    "https://keep.google.com/",
    "https://notes-pa.clients6.google.com/static/proxy.html?*"
  ],
  "optional_permissions": [
    "tabs"
  ],
  "optional_host_permissions": [
    "<all_urls>"
  ]
}