Email Paste

Paste Your Email address into web forms.

Email Paste란 무엇입니까?

Email Paste은(는) https://linangdata.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Paste Your Email address into web forms."입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        Tired of typing your email into form fields that don't support auto-complete?

This free tool adds a Paste Email icon to your browser toolbar. Simply type the email address you use most frequently into the tool's input box and then use the keyboard shortcut or context menu item to paste into fields on the web page you are currently viewing.

Specify an email address you want to use for pasting.
Paste with one of the following three methods:

- Use the keyboard shortcut: Control-Shift-E
- Use the Right-click context menu for the field, and then select: Paste [email protected]
- Click the Paste button on the extension popup                    

확장 프로그램 기본 정보

이름 Email Paste Email Paste
ID ajjomlicondblaanocpidednacdaonal
공식 URL https://chromewebstore.google.com/detail/email-paste/ajjomlicondblaanocpidednacdaonal
설명 Paste Your Email address into web forms.
파일 크기 607 KB
설치 횟수 142
현재 버전 1.2
최근 업데이트 2017-06-20
출시 날짜 2017-06-20
평점 5.00/5 총 3 개의 평점
개발자 https://linangdata.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 http://linangdata.com/tools/pasteEmail
도움말 페이지 URL http://linangdata.com/tools/pasteEmail
개인정보 보호 정책 페이지 URL https://linangdata.com/privacy.html
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Email Paste",
    "description": "Paste Your Email address into web forms.",
    "version": "1.2",
    "offline_enabled": false,
    "icons": {
        "16": "icon\/16x16.png",
        "24": "icon\/24x24.png",
        "32": "icon\/32x32.png",
        "48": "icon\/48x48.png",
        "64": "icon\/64x64.png",
        "128": "icon\/128x128.png"
    },
    "permissions": [
        "activeTab",
        "storage",
        "contextMenus"
    ],
    "browser_action": {
        "default_icon": "icon\/48x48.png",
        "default_popup": "popup.html",
        "default_title": "Paste Email Address"
    },
    "commands": {
        "paste-email": {
            "suggested_key": {
                "default": "Ctrl+Shift+E",
                "mac": "Command+Shift+E"
            },
            "description": "Paste Email address"
        }
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "contentscript.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ]
}