Kattis Hint Giver

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

Kattis Hint Giverとは何ですか?

Kattis Hint Giverはsijie123によって開発されたChromeの拡張機能で、その主な機能は「Adds hints to problems on Kattis. Hint source: http://cpbook.net/methodstosolve」です。

拡張機能のスクリーンショット

screenshot
screenshot

Kattis Hint Giver拡張機能のCRXファイルをダウンロード

Kattis Hint Giver拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

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

拡張機能の基本情報

名前 Kattis Hint Giver Kattis Hint Giver
ID knifhpiffmhebgaaghnaaabokoflcdmn
公式URL https://chromewebstore.google.com/detail/kattis-hint-giver/knifhpiffmhebgaaghnaaabokoflcdmn
説明 Adds hints to problems on Kattis. Hint source: http://cpbook.net/methodstosolve
ファイルサイズ 18.86 KB
インストール数 1,000
現在のバージョン 2.0.2
最終更新日 2023-01-09
公開日 2018-06-18
評価 5.00/5 合計 6 レビュー
開発者 sijie123
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://cpbook.net/
ヘルプページのURL https://cpbook.net/methodstosolve
対応言語 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": []
}