Text-Aid-Too

Edit web inputs (including on GMail) with your favourite native text editor.

Text-Aid-Too क्या है?

Text-Aid-Too Stephen Blott द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Edit web inputs (including on GMail) with your favourite native text editor."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Text-Aid-Too एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Use vim or emacs, say, to edit web inputs.  Unlike similar tools:

- This also works with contentEditable inputs (such as those found on GMail or Google's Inbox).

- This updates the input whenever the file is written, so you can preview your changes as you go along, without having to close your editor.

- This sets the file extension appropriately, so your text editor can detect the correct file type (".txt" for regular inputs, and ".html" for contentEditable inputs).

- Optionally (and experimentally), you can use Markdown to edit contentEditable inputs (for example, you can compose GMail messages using Markdown).  See the web page for details.

For more information (or to report issues), see the project web page: https://github.com/smblott-github/text-aid-too#text-aid-too.

You will also have to install the text-aid-too server.  The instructions are on the web page, above.

This is not compatible with other text-aid servers.  It doesn't use HTTP, but uses web sockets instead.

What's new?
- With server version 1.0.5, added experimental support for writing markdown for text from contentEditable inputs (e.g. the GMail compose window).                    

एक्सटेंशन की मूल जानकारी

नाम Text-Aid-Too Text-Aid-Too
ID klbcooigafjpbiahdjccmajnaehomajc
आधिकारिक URL https://chromewebstore.google.com/detail/text-aid-too/klbcooigafjpbiahdjccmajnaehomajc
विवरण Edit web inputs (including on GMail) with your favourite native text editor.
फ़ाइल का आकार 16.82 KB
स्थापना संख्या 118
वर्तमान संस्करण 1.1.1
अंतिम अपडेट 2015-06-16
प्रकाशन तिथि 2015-06-16
रेटिंग 5.00/5 कुल 2 रेटिंग्स
डेवलपर Stephen Blott
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/smblott-github/text-aid-too#text-aid-too
सहायता पृष्ठ URL https://github.com/smblott-github/text-aid-too/issues
समर्थित भाषाएँ en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Text-Aid-Too",
    "version": "1.1.1",
    "description": "Edit web inputs (including on GMail) with your favourite native text editor.",
    "background": {
        "scripts": [
            "common.js",
            "background.js"
        ]
    },
    "options_page": "options.html",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "common.js",
                "foreground.js"
            ],
            "run_at": "document_idle",
            "all_frames": true
        }
    ],
    "icons": {
        "16": "icons\/icon-16.png",
        "48": "icons\/icon-48.png",
        "128": "icons\/icon-128.png"
    },
    "page_action": {
        "default_icon": {
            "19": "icons\/icon-19.png",
            "38": "icons\/icon-38.png"
        },
        "default_title": "Text-Aid-Too"
    },
    "permissions": [
        "storage"
    ]
}