Edit with Emacs

Allow user to edit web-page textareas with Emacs (and other editors).

Edit with Emacsคืออะไร?

Edit with Emacs เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://www.bennee.com และคุณลักษณะหลักของมันคือ "Allow user to edit web-page textareas with Emacs (and other editors)."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Edit with Emacs

ดาวน์โหลดไฟล์ส่วนขยาย Edit with Emacs ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Edit with Emacs is an extension for Google's Chrome(ium) browser family that allows you to edit text areas on your browser in a more full featured editor. It does this in conjunction with an "Edit Server" which services requests by the browser. This is because extensions cannot spawn new processes as a security measure.

The extension packages native elisp version that can be run inside GNU Emacs itself, just follow the instructions from the options page of the extension. It has been known to work with GNU Emacs and Aquamacs (MacOS); it is presently not compatible with XEmacs.

Other example edit servers can be found at the project homepage. There is no reason why other server scripts could not spawn other editors and currently a number of servers support the simple URL based protocol.

This extension is licensed under the GPL v3 and development versions can be found at: http://github.com/stsquad/emacs_chrome

v1.17

* fix CSS bug causing repeating edit tags
* add a 48x48 icon for the Chrome web store
* remove unneeded tabs permission

v1.16

Extension

* allow disabling of switch to settings behaviour
* whitelist penguin.linux.test for edit server (ChromeOS/Crostini)
* fix context menu on newer Chromes (#158)
* honour edit_server_host instead of hard-coding 127.0.0.1
* use the Chrome extension UI to set keyboard shortcuts.
* fix handling of spellcheck=false nodes for Gmail (#171, #162)

edit-server.el

* use make-frame (see updated docs for edit-server-new-frame-alist)                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Edit with Emacs Edit with Emacs
ID ljobjlafonikaiipfkggjbhkghgicgoh
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/edit-with-emacs/ljobjlafonikaiipfkggjbhkghgicgoh
คำอธิบาย Allow user to edit web-page textareas with Emacs (and other editors).
ขนาดไฟล์ 345 KB
จำนวนการติดตั้ง 3,000
เวอร์ชันปัจจุบัน 1.17
อัปเดตครั้งล่าสุด 2023-12-05
วันที่เผยแพร่ 2018-01-17
คะแนน 4.48/5 รวมทั้งหมด 130 คะแนน
ผู้พัฒนา https://www.bennee.com
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย http://github.com/stsquad/emacs_chrome
URL หน้าช่วยเหลือ http://www.emacswiki.org/emacs/Edit_with_Emacs
ภาษาที่รองรับ en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Edit with Emacs",
    "version": "1.17",
    "manifest_version": 2,
    "description": "Allow user to edit web-page textareas with Emacs (and other editors).",
    "browser_action": {
        "default_icon": "icons\/emacs23-16x16.png"
    },
    "background": {
        "page": "html\/background.html"
    },
    "permissions": [
        "clipboardRead",
        "contextMenus",
        "http:\/\/127.0.0.1\/edit\/*",
        "http:\/\/penguin.linux.test\/edit\/*",
        "notifications"
    ],
    "icons": {
        "48": "icons\/emacs-48x48.png",
        "128": "icons\/emacs.png"
    },
    "options_ui": {
        "page": "fancy-settings\/source\/index.html",
        "open_in_tab": true,
        "browser_style": true
    },
    "web_accessible_resources": [
        "icons\/gumdrop.png",
        "icons\/emacs23-16x16-red.png"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/*\/*"
            ],
            "css": [
                "css\/textareas.css"
            ],
            "js": [
                "lib\/jquery-3.6.0.min.js",
                "lib\/jquery.color-2.1.2.min.js",
                "lib\/mutation_summary.js",
                "javascript\/textareas.js"
            ],
            "run_at": "document_idle",
            "all_frames": true
        }
    ],
    "commands": {
        "edit-textbox": {
            "suggested_key": {
                "default": "Alt+E",
                "linux": "Alt+E",
                "mac": "Alt+E"
            },
            "description": "Edit the current textarea with Emacs"
        },
        "activate-emacs": {
            "suggested_key": {
                "default": "Ctrl+Shift+E",
                "linux": "Ctrl+Shift+E",
                "mac": "Command+E"
            },
            "description": "Activate Emacs with contents of clipboard"
        }
    }
}