wordle-emoji-exporter
Export your wordle results as emojis!
wordle-emoji-exporter क्या है?
wordle-emoji-exporter jakemingolla द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Export your wordle results as emojis!"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में wordle-emoji-exporter एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Show off your Wordle results to your friends in Slack with this easy-to-use extension! Right-click the extension icon and your results will be automatically copied to your clipboard. View the 'Options' panel to customize emojis selected.
एक्सटेंशन की मूल जानकारी
नाम | wordle-emoji-exporter |
ID | pkcpilkiingkpheafjabinjajcfmfcfc |
आधिकारिक URL | https://chromewebstore.google.com/detail/wordle-emoji-exporter/pkcpilkiingkpheafjabinjajcfmfcfc |
विवरण | Export your wordle results as emojis! |
फ़ाइल का आकार | 54.3 KB |
स्थापना संख्या | 56 |
वर्तमान संस्करण | 1.1.0 |
अंतिम अपडेट | 2022-01-06 |
प्रकाशन तिथि | 2022-01-06 |
रेटिंग | 5.00/5 कुल 1 रेटिंग्स |
डेवलपर | jakemingolla |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/jakemingolla/wordle-emoji-exporter |
सहायता पृष्ठ URL | https://github.com/jakemingolla/wordle-emoji-exporter/issues/new |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "wordle-emoji-exporter", "description": "Export your wordle results as emojis!", "version": "1.1.0", "manifest_version": 3, "icons": { "16": "icons\/icon16.png", "32": "icons\/icon32.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png", "192": "icons\/icon192.png", "512": "icons\/icon512.png" }, "permissions": [ "storage" ], "action": { "default_popup": "views\/popup.html" }, "options_ui": { "page": "views\/options.html", "open_in_tab": false }, "content_scripts": [ { "matches": [ "*:\/\/*.powerlanguage.co.uk\/*" ], "js": [ "src\/content-script.js" ] } ] } |