Comfortable Atcoder

Comfort your atcoder life. For more detail, visit https://github.com/drafear/comfortable-atcoder

Comfortable Atcoder là gì?

Comfortable Atcoder là một tiện ích mở rộng Chrome được phát triển bởi drafear, và tính năng chính của nó là "Comfort your atcoder life. For more detail, visit https://github.com/drafear/comfortable-atcoder".

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

screenshot
screenshot
screenshot
screenshot

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

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

                        1. Notify judge result of codes you submit
2. Notify new clarifications on the contest page you open
3. Add a link tab to beta page on non-beta pages
4. Dropdown list of problems
5. Warn if you select specific languages for submission such as text, bash and so on (configurable)
6. You can enable/disable them                    

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

Tên Comfortable Atcoder Comfortable Atcoder
ID ipmmkccdccnephfilbjdnmnfcbopbpaj
URL Chính Thức https://chromewebstore.google.com/detail/comfortable-atcoder/ipmmkccdccnephfilbjdnmnfcbopbpaj
Mô tả Comfort your atcoder life. For more detail, visit https://github.com/drafear/comfortable-atcoder
Kích Thước Tệp 95.25 KB
Số Lần Cài Đặt 3,580
Phiên Bản Hiện Tại 1.6.10
Cập Nhật Lần Cuối 2019-05-25
Ngày Phát Hành 2019-05-24
Đánh Giá 4.83/5 Tổng số 6 Đánh Giá
Nhà Phát Triển drafear
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/drafear/comfortable-atcoder
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Comfortable Atcoder",
    "version": "1.6.10",
    "manifest_version": 2,
    "description": "Comfort your atcoder life. For more detail, visit https:\/\/github.com\/drafear\/comfortable-atcoder",
    "author": "drafear",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/atcoder.jp\/contests\/*",
                "*:\/\/atcoder.jp\/users\/*",
                "*:\/\/*.contest.atcoder.jp\/*"
            ],
            "exclude_matches": [
                "*:\/\/*.contest.atcoder.jp\/users\/*"
            ],
            "js": [
                "lib\/jquery.min.js",
                "lib\/jquery.cookie.js",
                "content\/all.js"
            ],
            "css": [
                "css\/all.css"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "*:\/\/atcoder.jp\/contests\/*"
            ],
            "js": [
                "content\/betalib.js",
                "content\/dropdown-modify.js",
                "content\/clar-notify.js"
            ],
            "css": [
                "css\/dropdown-modify.css"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "*:\/\/atcoder.jp\/contests\/*\/submissions\/me"
            ],
            "js": [
                "content\/result-notify.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "*:\/\/atcoder.jp\/contests\/*\/submit*",
                "*:\/\/atcoder.jp\/contests\/*\/tasks\/*"
            ],
            "js": [
                "content\/submission-warning.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "*:\/\/atcoder.jp\/users\/*\/history*"
            ],
            "js": [
                "content\/add-tweet-button.js"
            ],
            "css": [
                "css\/add-twitter-button.css"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "*:\/\/*.contest.atcoder.jp\/*"
            ],
            "js": [
                "content\/link-to-beta.js"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        "image\/beta.png"
    ],
    "background": {
        "scripts": [
            "lib\/jquery.min.js",
            "background\/oninstall.js",
            "background\/dispatcher.js"
        ],
        "persistent": true
    },
    "options_page": "options-page\/options.html",
    "permissions": [
        "notifications",
        "storage",
        "tabs"
    ],
    "icons": {
        "16": "image\/icon.png",
        "48": "image\/icon.png",
        "128": "image\/icon.png"
    }
}