Text-Aid-Too

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

Text-Aid-Too란 무엇입니까?

Text-Aid-Too은(는) Stephen Blott에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Edit web inputs (including on GMail) with your favourite native text editor."입니다.

확장 프로그램 스크린샷

screenshot

Text-Aid-Too 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
    ]
}