Email Paste

Paste Your Email address into web forms.

Email Paste là gì?

Email Paste là một tiện ích mở rộng Chrome được phát triển bởi https://linangdata.com, và tính năng chính của nó là "Paste Your Email address into web forms.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Email Paste

Tải xuống các tệp mở rộng Email Paste dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Email Paste Email Paste
ID ajjomlicondblaanocpidednacdaonal
URL Chính Thức https://chromewebstore.google.com/detail/email-paste/ajjomlicondblaanocpidednacdaonal
Mô tả Paste Your Email address into web forms.
Kích Thước Tệp 607 KB
Số Lần Cài Đặt 142
Phiên Bản Hiện Tại 1.2
Cập Nhật Lần Cuối 2017-06-20
Ngày Phát Hành 2017-06-20
Đánh Giá 5.00/5 Tổng số 3 Đánh Giá
Nhà Phát Triển https://linangdata.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng http://linangdata.com/tools/pasteEmail
URL Trang Trợ Giúp http://linangdata.com/tools/pasteEmail
URL Trang Chính Sách Bảo Mật https://linangdata.com/privacy.html
Ngôn Ngữ Được Hỗ Trợ 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
        }
    ]
}