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文件

下載Email Paste擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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
        }
    ]
}