Codeforce submission status link

Add submission status link to the problem page

Wat is Codeforce submission status link?

Codeforce submission status link is een Chrome-extensie ontwikkeld door https://fatminmin.com, en de belangrijkste functie is "Add submission status link to the problem page".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Codeforce submission status link

Download Codeforce submission status link-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

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

Basisinformatie over de Extensie

Naam Codeforce submission status link Codeforce submission status link
ID pckjjhfnnmonhkfekgnbbdafndfjpjap
Officiële URL https://chromewebstore.google.com/detail/codeforce-submission-stat/pckjjhfnnmonhkfekgnbbdafndfjpjap
Beschrijving Add submission status link to the problem page
Bestandsgrootte 40.68 KB
Aantal Installaties 637
Huidige Versie 1.0.4
Laatst Bijgewerkt 2016-08-29
Publicatiedatum 2016-08-29
Beoordeling 3.00/5 Totaal 2 Beoordelingen
Ontwikkelaar https://fatminmin.com
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/chiehmin/CodeforcesExtension
Ondersteunde Talen 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"
        }
    ]
}