Codeforce submission status link

Add submission status link to the problem page

Was ist Codeforce submission status link?

Codeforce submission status link ist eine Chrome-Erweiterung, die von https://fatminmin.com entwickelt wurde, und ihr Hauptmerkmal ist "Add submission status link to the problem page".

Erweiterungsscreenshots

screenshot

Codeforce submission status link-Erweiterungs-CRX-Datei herunterladen

Laden Sie Codeforce submission status link-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        This extension adds a link to the problem submission page at the end of sidebar for Codeforces.                    

Grundlegende Informationen zur Erweiterung

Name Codeforce submission status link Codeforce submission status link
ID pckjjhfnnmonhkfekgnbbdafndfjpjap
Offizielle URL https://chromewebstore.google.com/detail/codeforce-submission-stat/pckjjhfnnmonhkfekgnbbdafndfjpjap
Beschreibung Add submission status link to the problem page
Dateigröße 40.68 KB
Installationsanzahl 637
Aktuelle Version 1.0.4
Letztes Update 2016-08-29
Veröffentlichungsdatum 2016-08-29
Bewertung 3.00/5 Insgesamt 2 Bewertungen
Entwickler https://fatminmin.com
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/chiehmin/CodeforcesExtension
Unterstützte Sprachen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Codeforce submission status link",
    "description": "Add submission status link to the problem page",
    "version": "1.0.4",
    "icons": {
        "128": "icon.png"
    },
    "browser_action": {
        "default_icon": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*.codeforces.com\/problemset\/problem\/*"
            ],
            "js": [
                "jquery-3.1.0.min.js",
                "problemset.js"
            ],
            "run_at": "document_idle"
        },
        {
            "matches": [
                "http:\/\/*.codeforces.com\/group\/*\/contest\/*\/problem\/*"
            ],
            "js": [
                "jquery-3.1.0.min.js",
                "group_problem.js"
            ],
            "run_at": "document_idle"
        }
    ]
}