GhostText
Write in the browser with your text editor.
GhostText क्या है?
GhostText fregante द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Write in the browser with your text editor."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में GhostText एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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" ] } |