GhostText
Write in the browser with your text editor.
GhostText란 무엇입니까?
GhostText은(는) fregante에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Write in the browser with your text editor."입니다.
확장 프로그램 스크린샷
GhostText 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
ID | godiecgffnchndlihlpaajjcplehddca |
공식 URL | 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" ] } |