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 είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον malcolmgeldmacherdeveloper, και η κύρια λειτουργία του είναι "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

Λήψη αρχείου CRX της επέκτασης Codenames Timer

Λήψη αρχείων επέκτασης 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
Ηλεκτρονικό ταχυδρομείο [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"
    }
}