wordle-emoji-exporter
Export your wordle results as emojis!
什么是wordle-emoji-exporter?
wordle-emoji-exporter是由jakemingolla开发的Chrome扩展程序,该扩展的主要功能是“Export your wordle results as emojis!”。
扩展截图
下载wordle-emoji-exporter扩展crx文件
下载wordle-emoji-exporter扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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. 扩展基本信息
| 名称 | |
| 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"
]
}
]
} | |