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 |
| 官方網址 | 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"
]
}
]
} | |