Blow Hint

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

Blow Hintคืออะไร?

Blow Hint เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Colearn และคุณลักษณะหลักของมันคือ "Chrome extension to hide hints/tags while practicing competitive programming."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Blow Hint

ดาวน์โหลดไฟล์ส่วนขยาย 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
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
อีเมล [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\/*"
    ]
}