Blow Hint

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

Blow Hint là gì?

Blow Hint là một tiện ích mở rộng Chrome được phát triển bởi Colearn, và tính năng chính của nó là "Chrome extension to hide hints/tags while practicing competitive programming.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Blow Hint

Tải xuống các tệp mở rộng Blow Hint dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Blow Hint Blow Hint
ID dkaigpgifndhkfccncaajmmkolmmikli
URL Chính Thức https://chromewebstore.google.com/detail/blow-hint/dkaigpgifndhkfccncaajmmkolmmikli
Mô tả Chrome extension to hide hints/tags while practicing competitive programming.
Kích Thước Tệp 9.63 KB
Số Lần Cài Đặt 132
Phiên Bản Hiện Tại 1.1
Cập Nhật Lần Cuối 2017-03-08
Ngày Phát Hành 2017-03-08
Đánh Giá 4.67/5 Tổng số 3 Đánh Giá
Nhà Phát Triển Colearn
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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\/*"
    ]
}