Preach!

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

Cos'è Preach!?

Preach! è un'estensione di Chrome sviluppata da samjarman, e la sua funzione principale è "Preach inserts a 👏 emoji after all the words in text you select and puts the modified text on your clipboard ready to paste.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Preach!

Scarica i file di estensione Preach! in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Preach! Preach!
ID ohobigchjhkjogkjmpaipkcfgjjhacah
URL Ufficiale https://chromewebstore.google.com/detail/preach/ohobigchjhkjogkjmpaipkcfgjjhacah
Descrizione Preach inserts a 👏 emoji after all the words in text you select and puts the modified text on your clipboard ready to paste.
Dimensione del File 18.27 KB
Conteggio Installazioni 11
Versione Corrente 0.1.1
Ultimo Aggiornamento 2017-02-15
Data di Pubblicazione 2017-02-15
Valutazione 3.33/5 Totale 3 Valutazioni
Sviluppatore samjarman
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
        }
    ]
}