Blow Hint
Chrome extension to hide hints/tags while practicing competitive programming.
Qu'est-ce que Blow Hint ?
Blow Hint est une extension Chrome développée par Colearn, et sa fonction principale est "Chrome extension to hide hints/tags while practicing competitive programming.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Blow Hint
Téléchargez les fichiers d'extension Blow Hint 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
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
Informations de Base sur l'Extension
Nom | Blow Hint |
ID | dkaigpgifndhkfccncaajmmkolmmikli |
URL Officiel | https://chromewebstore.google.com/detail/blow-hint/dkaigpgifndhkfccncaajmmkolmmikli |
Description | Chrome extension to hide hints/tags while practicing competitive programming. |
Taille du Fichier | 9.63 KB |
Nombre d'Installations | 132 |
Version Actuelle | 1.1 |
Dernière Mise à Jour | 2017-03-08 |
Date de Publication | 2017-03-08 |
Évaluation | 4.67/5 Total 3 Évaluations |
Développeur | Colearn |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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\/*" ] } |