Paste Email

Paste Email clone for Chrome

Paste Email란 무엇입니까?

Paste Email은(는) Thomas Theiner에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Paste Email clone for Chrome"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Paste Email 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Adds context menu entries to input elements. The context menu entries let you select custom text to paste into the input element. It was originally designed for email text but you can provide any text you want.

NEW: Explore this extension on Github: https://github.com/devnull69/paste-email

UPDATE 2.0.1: Bugfixes for "Add / Delete Entry" on options page
UPDATE 2.0.0: Every entry can now have an identifier text and a multi-line entry. Options page has been modified for this.
UPDATE 1.3.1: Minor fix (removed IE specific code)
UPDATE 1.3.0: In response to a frequent request the extension will now ADD the selected text to the textbox/textarea instead of replacing it
UPDATE 1.2.2: Bugfix: Message passing for context menu update after option change
UPDATE 1.2.1: Adapted to new message passing via chrome.runtime and chrome.tabs
UPDATE 1.2: Manifest V2 enabled
UPDATE 1.1: Worked around one major problem of the script. Now it should work with all input and textarea fields                    

확장 프로그램 기본 정보

이름 Paste Email Paste Email
ID labnmfcoccnijgoofjgonodfklfcgiik
공식 URL https://chromewebstore.google.com/detail/paste-email/labnmfcoccnijgoofjgonodfklfcgiik
설명 Paste Email clone for Chrome
파일 크기 21.13 KB
설치 횟수 1,758
현재 버전 2.0.1
최근 업데이트 2014-04-02
출시 날짜 2014-04-02
평점 3.41/5 총 51 개의 평점
개발자 Thomas Theiner
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "persistent": true,
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "content.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_end"
        }
    ],
    "description": "Paste Email clone for Chrome",
    "icons": {
        "128": "icon128.png",
        "16": "icon16.png",
        "48": "icon48.png"
    },
    "manifest_version": 2,
    "name": "Paste Email",
    "options_page": "options.html",
    "permissions": [
        "contextMenus"
    ],
    "version": "2.0.1"
}