Codenames Timer
Adds a timer to the online Codenames game at https://codenames.game/. The timer shows up for the spymaster of either team when it…
ما هو Codenames Timer؟
Codenames Timer هو إضافة Chrome تم تطويرها بواسطة malcolmgeldmacherdeveloper، والميزة الرئيسية لها هي "Adds a timer to the online Codenames game at https://codenames.game/. The timer shows up for the spymaster of either team when it…".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Codenames Timer
قم بتنزيل ملفات الامتداد Codenames Timer بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Adds a timer to the online Codenames game at https://codenames.game/. The timer shows up for the spymaster of either team when it is their turn for coming up with a clue. Once time runs out, whatever has been entered/selected is submitted whether you're ready or not! This timer is super useful for speeding up games of Codenames if you have normally slow spymasters. معلومات أساسية عن التمديد
| الاسم | |
| ID | fddlmlicmnclcjgccammbdpjbcmjnidn |
| عنوان URL الرسمي | https://chrome.google.com/webstore/detail/codenames-timer/fddlmlicmnclcjgccammbdpjbcmjnidn |
| الوصف | Adds a timer to the online Codenames game at https://codenames.game/. The timer shows up for the spymaster of either team when it… |
| حجم الملف | 412 KB |
| عدد التثبيتات | 77 |
| النسخة الحالية | 1.0.0 |
| آخر تحديث | 2021-03-30 |
| تاريخ النشر | 2021-03-30 |
| تقييم | 5.00/5 مجموع تقييمات 5 |
| المطور | malcolmgeldmacherdeveloper |
| البريد الإلكتروني | [email protected] |
| نوع الدفع | free |
| اللغات المدعومة | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Codenames Timer",
"version": "1.0.0",
"content_scripts": [
{
"matches": [
"https:\/\/codenames.game\/*"
],
"css": [
"content.css"
],
"js": [
"jquery-3.1.1.min.js",
"content.js"
]
}
],
"icons": {
"16": "icon.png",
"48": "icon.png",
"128": "icon.png"
},
"browser_action": {
"default_icon": "icon.png"
}
} | |