org-capture-pop-frame is an extension of org-capture, when it is enabled, org-capure will capture things in a new pop frame, after capture finish or abort. the poped frame will be delete.
NOTE:
- This extension is suitable for capturing links and text in firefox.
- You can click with mouse in emacs header-line to finish or abort capture.
org-capture-pop-frame is now available from the famous emacs package repo melpa, so the recommended way is to install it through emacs package management system.
(require 'org-capture)
(require 'org-capture-pop-frame)
(setq org-capture-templates
'(("f" "org-capture-from-web" entry (file+headline "~/note.org" "Notes-from-web")
"** %a
%i
%?
"
:empty-lines 1)))
You need install one of the following firefox extensions, then config it.
-
AppLauncher
-
Download links
-
Applauncher config
- Name: org-capture(f) (Edit it)
- Path: /home/feng/emacs/bin/emacsclient (Edit it)
- Args: org-protocol://capture://f/&eurl;/&etitle;/&etext; ("f" is org-capture's key)
-
-
org-mode-capture
- Download links
- Config it (Very simple, just change emacsclient path.)
NOTE: The official org-mode-capture extension can not set some emacsclient options, for example: "–socket-name", you can download and install tumashu's modify org-mode-capture's xpi instead.
Firefox (version >= 41) may block this xpi for signature reason, user can set "xpinstall.signatures.required" to "false" in about:config to deal with this problem.