wordle-emoji-exporter
Export your wordle results as emojis!
What is wordle-emoji-exporter?
wordle-emoji-exporter is a Chrome extension developed by jakemingolla, and its main feature is "Export your wordle results as emojis!".
Extension Screenshots
Download wordle-emoji-exporter Extension CRX File
Download wordle-emoji-exporter extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | wordle-emoji-exporter |
ID | pkcpilkiingkpheafjabinjajcfmfcfc |
Official URL | https://chromewebstore.google.com/detail/wordle-emoji-exporter/pkcpilkiingkpheafjabinjajcfmfcfc |
Description | Export your wordle results as emojis! |
File Size | 54.3 KB |
Installation Count | 56 |
Current Version | 1.1.0 |
Last Updated | 2022-01-06 |
Publish Date | 2022-01-06 |
Rating | 5.00/5 Total 1 Ratings |
Developer | jakemingolla |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/jakemingolla/wordle-emoji-exporter |
Help Page URL | https://github.com/jakemingolla/wordle-emoji-exporter/issues/new |
Supported Languages | 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" ] } ] } |