wordle-emoji-exporter
Export your wordle results as emojis!
ما هو wordle-emoji-exporter؟
wordle-emoji-exporter هو إضافة Chrome تم تطويرها بواسطة jakemingolla، والميزة الرئيسية لها هي "Export your wordle results as emojis!".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة wordle-emoji-exporter
قم بتنزيل ملفات الامتداد wordle-emoji-exporter بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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. معلومات أساسية عن التمديد
| الاسم | |
| 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 |
| عنوان صفحة المساعدة | 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"
]
}
]
} | |