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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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\/*"
    ]
}