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…
¿Qué es Codenames Timer?
Codenames Timer es una extensión de Chrome desarrollada por malcolmgeldmacherdeveloper, y su función principal es "Adds a timer to the online Codenames game at https://codenames.game/. The timer shows up for the spymaster of either team when it…".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Codenames Timer
Descarga archivos de extensión Codenames Timer en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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.
Información Básica de la Extensión
Nombre | |
ID | fddlmlicmnclcjgccammbdpjbcmjnidn |
URL Oficial | https://chrome.google.com/webstore/detail/codenames-timer/fddlmlicmnclcjgccammbdpjbcmjnidn |
Descripción | Adds a timer to the online Codenames game at https://codenames.game/. The timer shows up for the spymaster of either team when it… |
Tamaño del Archivo | 412 KB |
Cantidad de Instalaciones | 77 |
Versión Actual | 1.0.0 |
Última Actualización | 2021-03-30 |
Fecha de Publicación | 2021-03-30 |
Calificación | 5.00/5 Total de 5 Calificaciones |
Desarrollador | malcolmgeldmacherdeveloper |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Idiomas Soportados | 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" } } |