grasp

grasp

A reliable way of capturing and tagging web pages and content

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "grasp",
  "version": "0.7.1",
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true,
    "browser_style": 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",
    "http://localhost/capture",
    "https://localhost/capture"
  ],
  "commands": {
    "capture-simple": {
      "description": "Quick capture: url, title and selection",
      "suggested_key": {
        "default": "Ctrl+Alt+C",
        "mac": "Command+Alt+C"
      }
    },
    "_execute_browser_action": {
      "description": "Capture page, with extra information",
      "suggested_key": {
        "default": "Ctrl+Alt+Y",
        "mac": "Command+Alt+Y"
      }
    }
  },
  "optional_permissions": [
    "http://*/capture",
    "https://*/capture"
  ],
  "manifest_version": 2,
  "background": {
    "scripts": [
      "browser-polyfill.js",
      "background.js"
    ],
    "persistent": false
  },
  "content_security_policy": "default-src 'self'; connect-src http://*:*/capture https://*:*/capture; style-src 'unsafe-inline'",
  "browser_action": {
    "default_icon": "img/unicorn.png",
    "default_popup": "popup.html",
    "default_title": "Capture page, with extra information",
    "browser_style": true
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{37e42980-a7c9-473c-96d5-13f18e0efc74}"
    }
  }
}