Kattis Hint Giver

Adds hints to problems on Kattis. Hint source: http://cpbook.net/methodstosolve

What is Kattis Hint Giver?

Kattis Hint Giver is a Chrome extension developed by sijie123, and its main feature is "Adds hints to problems on Kattis. Hint source: http://cpbook.net/methodstosolve".

Extension Screenshots

screenshot
screenshot

Download Kattis Hint Giver Extension CRX File

Download Kattis Hint Giver extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Fetches hints from cpbook.net/methodstosolve, then displays it neatly on selected pages on Kattis. Useful for learning Competitive Programming!                    

Extension Basic Information

Name Kattis Hint Giver Kattis Hint Giver
ID knifhpiffmhebgaaghnaaabokoflcdmn
Official URL https://chromewebstore.google.com/detail/kattis-hint-giver/knifhpiffmhebgaaghnaaabokoflcdmn
Description Adds hints to problems on Kattis. Hint source: http://cpbook.net/methodstosolve
File Size 18.86 KB
Installation Count 1,000
Current Version 2.0.2
Last Updated 2023-01-09
Publish Date 2018-06-18
Rating 5.00/5 Total 6 Ratings
Developer sijie123
Email [email protected]
Payment Type free
Extension Website https://cpbook.net/
Help Page URL https://cpbook.net/methodstosolve
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Kattis Hint Giver",
    "version": "2.0.2",
    "action": {
        "default_icon": {
            "128": "icon128.png"
        }
    },
    "description": "Adds hints to problems on Kattis. Hint source: http:\/\/cpbook.net\/methodstosolve",
    "icons": {
        "128": "icon128.png"
    },
    "author": "Si Jie Lin",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.kattis.com\/problems*"
            ],
            "run_at": "document_end",
            "js": [
                "kattis.js"
            ],
            "css": [
                "spoiler.css"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "host_permissions": [
        "https:\/\/cpbook.net\/"
    ],
    "permissions": [
        "storage"
    ],
    "content_security_policy": []
}