Paste Email

Paste Email clone for Chrome

Paste Emailคืออะไร?

Paste Email เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Thomas Theiner และคุณลักษณะหลักของมันคือ "Paste Email clone for Chrome"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Paste Email

ดาวน์โหลดไฟล์ส่วนขยาย Paste Email ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
}