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
电子邮箱 [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": []
}