grasp

grasp

Reliably capture links and webpage content in a plaintext file (org-mode/markdown)

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "grasp",
  "version": "1.0.0",
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "icons": {
    "128": "img/unicorn.png"
  },
  "description": "Reliably capture links and webpage content in a plaintext file (org-mode/markdown)",
  "permissions": [
    "storage",
    "notifications",
    "activeTab",
    "scripting"
  ],
  "commands": {
    "capture-simple": {
      "description": "Quick capture: url, title and selection",
      "suggested_key": {
        "default": "Ctrl+Shift+H",
        "mac": "Command+Shift+H"
      }
    },
    "_execute_action": {
      "description": "Capture page, with extra information",
      "suggested_key": {
        "default": "Ctrl+Shift+Y",
        "mac": "Command+Shift+Y"
      }
    }
  },
  "optional_permissions": [],
  "manifest_version": 3,
  "background": {
    "service_worker": "background.js",
    "scripts": [
      "background.js"
    ]
  },
  "action": {
    "default_icon": "img/unicorn.png",
    "default_popup": "popup.html",
    "default_title": "Capture page, with extra information"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "detect_dark_mode.js"
      ]
    }
  ],
  "host_permissions": [
    "http://localhost/capture",
    "https://localhost/capture"
  ],
  "optional_host_permissions": [
    "http://*/capture",
    "https://*/capture"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{00000000-0000-0000-0000-000000000000}"
    }
  }
}