Codeforces: Submission time in local timezone

View the time associated with your submissions in your local time zone

Qu'est-ce que Codeforces: Submission time in local timezone ?

Codeforces: Submission time in local timezone est une extension Chrome développée par manu-chroma, et sa fonction principale est "View the time associated with your submissions in your local time zone".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Codeforces: Submission time in local timezone

Téléchargez les fichiers d'extension Codeforces: Submission time in local timezone au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        In codeforces, the user sees submission times for their code submissions in MST (Moscow Standard Time). This extension, converts and displays the time in your local time zone.                    

Informations de Base sur l'Extension

Nom Codeforces: Submission time in local timezone Codeforces: Submission time in local timezone
ID dfegjfgkamidfikgflhkdjgejoekblhl
URL Officiel https://chromewebstore.google.com/detail/codeforces-submission-tim/dfegjfgkamidfikgflhkdjgejoekblhl
Description View the time associated with your submissions in your local time zone
Taille du Fichier 64.1 KB
Nombre d'Installations 33
Version Actuelle 0.3
Dernière Mise à Jour 2019-03-23
Date de Publication 2019-03-23
Développeur manu-chroma
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/manu-chroma/CF-Local-Time
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Codeforces: Submission time in local timezone",
    "version": "0.3",
    "description": "View the time associated with your submissions in your local time zone",
    "permissions": [
        "https:\/\/codeforces.com\/submissions\/*",
        "https:\/\/codeforces.com\/submissions\/*",
        "https:\/\/codeforces.com\/contest\/*\/my",
        "activeTab",
        "declarativeContent",
        "storage",
        "management"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/codeforces.com\/submissions\/*",
                "https:\/\/codeforces.com\/submissions\/*",
                "https:\/\/codeforces.com\/contest\/*\/my"
            ],
            "css": [],
            "js": [
                "content_script.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "vendor\/hot-reload.js"
        ],
        "persistent": false
    },
    "web_accessible_resources": [
        "*"
    ],
    "icons": {
        "16": "images\/icons8-timer-16.png",
        "32": "images\/icons8-timer-32.png",
        "48": "images\/icons8-timer-48.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "images\/icons8-timer-16.png",
            "32": "images\/icons8-timer-32.png",
            "48": "images\/icons8-timer-48.png"
        }
    },
    "manifest_version": 2
}