Blow Hint

Chrome extension to hide hints/tags while practicing competitive programming.

Vad är Blow Hint?

Blow Hint är en Chrome-tillägg utvecklad av Colearn, och dess huvudfunktion är "Chrome extension to hide hints/tags while practicing competitive programming.".

Tilläggsskärmbilder

screenshot

Ladda ner Blow Hint-förlängningens CRX-fil

Ladda ner Blow Hint-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        Its may be very frustrating to see hints while you are trying to tackle a problem in practice mode.
The plugin hides hints/tags on problem statement page and allows you to show hint by single click.
It currently supports Codeforces and Spoj. 
We believe in open source 
Github: https://github.com/colearn-co/BlowHint                    

Grundläggande Information om Tillägg

Namn Blow Hint Blow Hint
ID dkaigpgifndhkfccncaajmmkolmmikli
Officiell webbadress https://chromewebstore.google.com/detail/blow-hint/dkaigpgifndhkfccncaajmmkolmmikli
Beskrivning Chrome extension to hide hints/tags while practicing competitive programming.
Filstorlek 9.63 KB
Antal Installationer 132
Aktuell Version 1.1
Senast Uppdaterad 2017-03-08
Publiceringsdatum 2017-03-08
Betyg 4.67/5 Totalt 3 Betyg
Utvecklare Colearn
E-post [email protected]
Betalningssätt free
Stödda Språk en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Blow Hint",
    "description": "Chrome extension to hide hints\/tags while practicing competitive programming.",
    "version": "1.1",
    "browser_action": {
        "default_icon": {
            "19": "images\/icon19.png",
            "38": "images\/icon38.png"
        }
    },
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.codeforces.com\/*\/problem\/*"
            ],
            "js": [
                "codeforces-content.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "*:\/\/*.spoj.com\/problems\/*"
            ],
            "js": [
                "spoj-content.js"
            ],
            "css": [
                "spoj-content.css"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "*:\/\/*.spoj.com\/*",
        "*:\/\/*.codeforces.com\/*"
    ]
}