Blow Hint
Chrome extension to hide hints/tags while practicing competitive programming.
Blow Hintとは何ですか?
Blow HintはColearnによって開発されたChromeの拡張機能で、その主な機能は「Chrome extension to hide hints/tags while practicing competitive programming.」です。
拡張機能のスクリーンショット
Blow Hint拡張機能のCRXファイルをダウンロード
Blow Hint拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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
拡張機能の基本情報
名前 | Blow Hint |
ID | dkaigpgifndhkfccncaajmmkolmmikli |
公式URL | https://chromewebstore.google.com/detail/blow-hint/dkaigpgifndhkfccncaajmmkolmmikli |
説明 | Chrome extension to hide hints/tags while practicing competitive programming. |
ファイルサイズ | 9.63 KB |
インストール数 | 132 |
現在のバージョン | 1.1 |
最終更新日 | 2017-03-08 |
公開日 | 2017-03-08 |
評価 | 4.67/5 合計 3 レビュー |
開発者 | Colearn |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | 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\/*" ] } |