typical90_extension

Chrome extension that makes typical90 easier to use.

typical90_extension là gì?

typical90_extension là một tiện ích mở rộng Chrome được phát triển bởi taketakeyyy, và tính năng chính của nó là "Chrome extension that makes typical90 easier to use.".

Ả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 typical90_extension

Tải xuống các tệp mở rộng typical90_extension 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

                        AtCoderの「競プロ典型 90 問」のページを少し使いやすくします。

* E869120さんの問題画像、解説画像、サンプルコードへのリンクを追加します。
* 問題ページで、問題を難易度順に並び替えることができます。                    

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

Tên typical90_extension typical90_extension
ID olilmbfbgdnilofdfbladkgbbfecbidb
URL Chính Thức https://chromewebstore.google.com/detail/typical90extension/olilmbfbgdnilofdfbladkgbbfecbidb
Mô tả Chrome extension that makes typical90 easier to use.
Kích Thước Tệp 23.81 KB
Số Lần Cài Đặt 132
Phiên Bản Hiện Tại 1.2.1
Cập Nhật Lần Cuối 2023-05-19
Ngày Phát Hành 2021-04-23
Nhà Phát Triển taketakeyyy
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/taketakeyyy/typical90_extension
URL Trang Trợ Giúp https://github.com/taketakeyyy/typical90_extension
Ngôn Ngữ Được Hỗ Trợ ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "typical90_extension",
    "short_name": "ty90ex",
    "description": "Chrome extension that makes typical90 easier to use.",
    "manifest_version": 3,
    "version": "1.2.1",
    "author": "taketakeyyy",
    "icons": {
        "16": "icon\/icon_x16.png",
        "32": "icon\/icon_x32.png",
        "48": "icon\/icon_x48.png",
        "128": "icon\/icon_x128(x96).png"
    },
    "action": {
        "default_title": "typical90_extension",
        "default_icon": {
            "19": "icon\/icon_x19.png",
            "38": "icon\/icon_x38.png"
        }
    },
    "content_scripts": [
        {
            "js": [
                "bin\/content_scripts.js"
            ],
            "matches": [
                "http:\/\/atcoder.jp\/contests\/typical90\/*",
                "https:\/\/atcoder.jp\/contests\/typical90\/*"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "permissions": [
        "storage"
    ]
}