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!是由samjarman開發的Chrome擴展程式,該擴展的主要功能是“Preach inserts a 👏 emoji after all the words in text you select and puts the modified text on your clipboard ready to paste.”。

擴展截圖

screenshot

下載Preach!擴展crx文件

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