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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Preach inserts a 👏 emoji after all the words in text you select and puts the modified text on your clipboard ready to paste."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Preach! एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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! |
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" } ] } |