Blow Hint
Chrome extension to hide hints/tags while practicing competitive programming.
Wat is Blow Hint?
Blow Hint is een Chrome-extensie ontwikkeld door Colearn, en de belangrijkste functie is "Chrome extension to hide hints/tags while practicing competitive programming.".
Extensie Screenshots
Download het CRX-bestand van de extensie Blow Hint
Download Blow Hint-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
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
Basisinformatie over de Extensie
Naam | Blow Hint |
ID | dkaigpgifndhkfccncaajmmkolmmikli |
Officiële URL | https://chromewebstore.google.com/detail/blow-hint/dkaigpgifndhkfccncaajmmkolmmikli |
Beschrijving | Chrome extension to hide hints/tags while practicing competitive programming. |
Bestandsgrootte | 9.63 KB |
Aantal Installaties | 132 |
Huidige Versie | 1.1 |
Laatst Bijgewerkt | 2017-03-08 |
Publicatiedatum | 2017-03-08 |
Beoordeling | 4.67/5 Totaal 3 Beoordelingen |
Ontwikkelaar | Colearn |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | 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\/*" ] } |