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…

Apa itu Codenames Timer?

Codenames Timer adalah ekstensi Chrome yang dikembangkan oleh malcolmgeldmacherdeveloper, dan fitur utamanya adalah "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 Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Codenames Timer

Unduh file ekstensi Codenames Timer dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Codenames Timer Codenames Timer
ID fddlmlicmnclcjgccammbdpjbcmjnidn
URL Resmi https://chrome.google.com/webstore/detail/codenames-timer/fddlmlicmnclcjgccammbdpjbcmjnidn
Deskripsi Adds a timer to the online Codenames game at https://codenames.game/. The timer shows up for the spymaster of either team when it…
Ukuran File 412 KB
Jumlah Instalasi 77
Versi Saat Ini 1.0.0
Terakhir Diperbarui 2021-03-30
Tanggal Publikasi 2021-03-30
Penilaian 5.00/5 Total 5 Penilaian
Pengembang malcolmgeldmacherdeveloper
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung 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"
    }
}