Preach!

Preach inserts a 👏 emoji after all the words in text you select and puts the modified text on your clipboard ready to paste.

Preach!คืออะไร?

Preach! เป็นส่วนขยายของ Chrome ที่พัฒนาโดย samjarman และคุณลักษณะหลักของมันคือ "Preach inserts a 👏 emoji after all the words in text you select and puts the modified text on your clipboard ready to paste."

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

screenshot

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

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

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

                        Typing 👏  like 👏  this 👏   is 👏  super 👏  hard... so Preach! inserts a 👏  clap emoji after all the words in text you select and puts the modified text on your clipboard ready to paste. Use it for Tweets, Facebook, blogs and much more! 


F.A.Q:
Why not just replace the text? 
Well we don't feel comfortable editing the stuff you put into text fields - that's your job and we want to respect that. 

Why is there no space after the 👏 emoji? 
Well Chrome has a rendering bug right now with emoji (the space is there!) so we assume this will be fixed super soon. Hang tight!

Thanks to:
Ben Moskovitz 
Jacob Marshall                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Preach! Preach!
ID ohobigchjhkjogkjmpaipkcfgjjhacah
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/preach/ohobigchjhkjogkjmpaipkcfgjjhacah
คำอธิบาย Preach inserts a 👏 emoji after all the words in text you select and puts the modified text on your clipboard ready to paste.
ขนาดไฟล์ 18.27 KB
จำนวนการติดตั้ง 11
เวอร์ชันปัจจุบัน 0.1.1
อัปเดตครั้งล่าสุด 2017-02-15
วันที่เผยแพร่ 2017-02-15
คะแนน 3.33/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา samjarman
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Preach!",
    "short_name": "Preach!",
    "description": "Preach inserts a \ud83d\udc4f emoji after all the words in text you select and puts the modified text on your clipboard ready to paste.",
    "version": "0.1.1",
    "permissions": [
        "contextMenus",
        "clipboardWrite"
    ],
    "background": {
        "scripts": [
            "index.js"
        ]
    },
    "icons": {
        "16": "icon-bitty.png",
        "48": "icon-small.png",
        "128": "icon-large.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content-script.js"
            ],
            "run_at": "document_end"
        }
    ]
}