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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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