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
官方網址 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
電子郵箱 [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": []
}