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…
Co je Codenames Timer?
Codenames Timer je rozšíření Chrome vyvinuté malcolmgeldmacherdeveloper, a jeho hlavní funkcí je „Adds a timer to the online Codenames game at https://codenames.game/. The timer shows up for the spymaster of either team when it…“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Codenames Timer
Stáhněte si soubory rozšíření Codenames Timer ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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.
Základní Informace o Rozšíření
Název | |
ID | fddlmlicmnclcjgccammbdpjbcmjnidn |
Oficiální URL | https://chrome.google.com/webstore/detail/codenames-timer/fddlmlicmnclcjgccammbdpjbcmjnidn |
Popis | Adds a timer to the online Codenames game at https://codenames.game/. The timer shows up for the spymaster of either team when it… |
Velikost souboru | 412 KB |
Počet instalací | 77 |
Aktuální Verze | 1.0.0 |
Poslední Aktualizace | 2021-03-30 |
Datum Vydání | 2021-03-30 |
Hodnocení | 5.00/5 Celkem 5 Hodnocení |
Vývojář | malcolmgeldmacherdeveloper |
[email protected] | |
Typ Platby | free |
Podporované Jazyky | 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" } } |