Org Capture

Org Capture

A helper for capturing things via org-protocol in emacs: First, set up: http://orgmode.org/worg/org-contrib/org-protocol.html or https://github.com/sprig/org-capture-extension See https://youtu.be/zKDHto-4wsU for example usage

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Org Capture",
  "version": "0.2.2resigned1",
  "description": "A helper for capturing things via org-protocol in emacs: First, set up: http://orgmode.org/worg/org-contrib/org-protocol.html",
  "homepage_url": "https://github.com/sprig/org-capture-extension",
  "background": {
    "persistent": false,
    "scripts": [
      "background.js"
    ]
  },
  "permissions": [
    "activeTab",
    "storage"
  ],
  "options_ui": {
    "page": "options.html"
  },
  "browser_action": {
    "default_icon": "org-mode-unicorn.png"
  },
  "commands": {
    "_execute_browser_action": {
      "description": "Capture current page with org-capture",
      "suggested_key": {
        "default": "Ctrl+Shift+L",
        "mac": "Command+Shift+L"
      }
    }
  },
  "applications": {
    "gecko": {
      "id": "{ddefd400-12ea-4264-8166-481f23abaa87}"
    }
  }
}