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はmalcolmgeldmacherdeveloperによって開発されたChromeの拡張機能で、その主な機能は「Adds a timer to the online Codenames game at https://codenames.game/. The timer shows up for the spymaster of either team when it…」です。

拡張機能のスクリーンショット

screenshot

Codenames Timer拡張機能のCRXファイルをダウンロード

Codenames Timer拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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.                    

拡張機能の基本情報

名前 Codenames Timer Codenames Timer
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
Eメール [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"
    }
}