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.”。

擴展截圖

screenshot

下載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 Blow Hint
ID dkaigpgifndhkfccncaajmmkolmmikli
官方網址 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
電子郵箱 [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\/*"
    ]
}