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…
What is Codenames Timer?
Codenames Timer is a Chrome extension developed by malcolmgeldmacherdeveloper, and its main feature is "Adds a timer to the online Codenames game at https://codenames.game/. The timer shows up for the spymaster of either team when it…".
Extension Screenshots
Download Codenames Timer Extension CRX File
Download Codenames Timer extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | |
ID | fddlmlicmnclcjgccammbdpjbcmjnidn |
Official URL | https://chrome.google.com/webstore/detail/codenames-timer/fddlmlicmnclcjgccammbdpjbcmjnidn |
Description | Adds a timer to the online Codenames game at https://codenames.game/. The timer shows up for the spymaster of either team when it… |
File Size | 412 KB |
Installation Count | 77 |
Current Version | 1.0.0 |
Last Updated | 2021-03-30 |
Publish Date | 2021-03-30 |
Rating | 5.00/5 Total 5 Ratings |
Developer | malcolmgeldmacherdeveloper |
[email protected] | |
Payment Type | free |
Supported Languages | 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" } } |