Kattis Hint Giver

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

Kattis Hint Giver là gì?

Kattis Hint Giver là một tiện ích mở rộng Chrome được phát triển bởi sijie123, và tính năng chính của nó là "Adds hints to problems on Kattis. Hint source: http://cpbook.net/methodstosolve".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Kattis Hint Giver

Tải xuống các tệp mở rộng Kattis Hint Giver dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Kattis Hint Giver Kattis Hint Giver
ID knifhpiffmhebgaaghnaaabokoflcdmn
URL Chính Thức https://chromewebstore.google.com/detail/kattis-hint-giver/knifhpiffmhebgaaghnaaabokoflcdmn
Mô tả Adds hints to problems on Kattis. Hint source: http://cpbook.net/methodstosolve
Kích Thước Tệp 18.86 KB
Số Lần Cài Đặt 1,000
Phiên Bản Hiện Tại 2.0.2
Cập Nhật Lần Cuối 2023-01-09
Ngày Phát Hành 2018-06-18
Đánh Giá 5.00/5 Tổng số 6 Đánh Giá
Nhà Phát Triển sijie123
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://cpbook.net/
URL Trang Trợ Giúp https://cpbook.net/methodstosolve
Ngôn Ngữ Được Hỗ Trợ 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": []
}