GhostText

Write in the browser with your text editor.

什麼是GhostText?

GhostText是由fregante開發的Chrome擴展程式,該擴展的主要功能是“Write in the browser with your text editor.”。

擴展截圖

下載GhostText擴展crx文件

下載GhostText擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Whenever you’re writing more than a little snippet of code anywhere on the web, activate GhostText to open your preferred text editor and enjoy your own development environment.

GhostText is a browser extension that connects to your editor via its own extension. Install both extensions and, if necessary, start the GhostText server in the editor’s extension.

Supported editors:

• Sublime Text
• VS Code
• Emacs
• Vim
• Neovim
• ACME Editor

You can find more information on the "Website" link or contribute on GitHub (You'll find the link on the same website)                    

擴展基本資訊

名稱 GhostText GhostText
ID godiecgffnchndlihlpaajjcplehddca
官方網址 https://chromewebstore.google.com/detail/ghosttext/godiecgffnchndlihlpaajjcplehddca
簡介 Write in the browser with your text editor.
檔案大小 79.58 KB
安裝次數 6,965
目前版本 23.5.16
更新時間 2023-05-16
上架時間 2017-12-11
評分 4.84/5 共 138 次評分
開發者 fregante
電子郵箱 [email protected]
付費類型 free
擴展官網 https://ghosttext.fregante.com
說明頁面URL https://github.com/fregante/GhostText/issues
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "GhostText",
    "description": "Write in the browser with your text editor.",
    "version": "23.5.16",
    "minimum_chrome_version": "86",
    "author": "Federico Brigante",
    "icons": {
        "16": "icons\/icon16.png",
        "32": "icons\/icon32.png",
        "48": "icons\/icon48.png",
        "64": "icons\/icon64.png",
        "128": "icons\/icon128.png",
        "256": "icons\/icon256.png"
    },
    "permissions": [
        "activeTab",
        "contextMenus",
        "http:\/\/localhost\/",
        "storage"
    ],
    "optional_permissions": [
        "*:\/\/*\/*"
    ],
    "applications": {
        "gecko": {
            "id": "[email protected]",
            "strict_min_version": "83.0"
        }
    },
    "options_ui": {
        "browser_style": true,
        "page": "options.html"
    },
    "browser_action": {
        "default_title": "GhostText",
        "default_icon": {
            "16": "icons\/icon16.png",
            "32": "icons\/icon32.png",
            "48": "icons\/icon48.png",
            "64": "icons\/icon64.png",
            "128": "icons\/icon128.png",
            "256": "icons\/icon256.png"
        }
    },
    "commands": {
        "open": {
            "description": "Connect to GhostText",
            "suggested_key": {
                "default": "Ctrl+Shift+K",
                "linux": "Ctrl+Shift+H"
            }
        },
        "close": {
            "description": "Disconnect from GhostText"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/localhost:4001\/*"
            ],
            "js": [
                "ghost-text.js",
                "options.js"
            ],
            "css": [
                "ghost-text.css"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "web_accessible_resources": [
        "background.js",
        "ghost-text.css",
        "ghost-text.js",
        "humane-ghosttext.css",
        "humane-ghosttext.js",
        "icons\/icon128.png",
        "icons\/icon16.png",
        "icons\/icon256.png",
        "icons\/icon32.png",
        "icons\/icon48.png",
        "icons\/icon64.png",
        "options-storage.js",
        "options.html",
        "options.js"
    ]
}