Monash University Codeforces Tool

Monash University ACM Teams' Training Tool.

Monash University Codeforces Tool là gì?

Monash University Codeforces Tool là một tiện ích mở rộng Chrome được phát triển bởi safarisoul (Shenlu Wang), và tính năng chính của nó là "Monash University ACM Teams' Training Tool.".

Tải xuống tệp CRX của tiện ích mở rộng Monash University Codeforces Tool

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

                        under GYM tag:

1. Remove other virtual participants except Monash University Teams.

under GROUPS tag:

1. Remove other virtual participants except Monash University Teams.

under PROBLEMSET tag:

1. Hide solved problems.
2. Display a counter of unsolved problems on the current page.
3. Works with the table of problems unsorted or sorted by "the number of participants solved the problem" either in descending or ascending order.
4. Works with the table of problems filtered by tags (categories).

under url "*/status*" and "*/my*":

1. Hide the test case number of verdict "Runtime error", "Wrong answer" or "Time Limit exceeded".
2. Hide "view source" link.
3. Hide "details" link.

under url "*/submission*"

1. Hide the test case number of verdict "Runtime error", "Wrong answer" or "Time Limit exceeded".
2. Hide details of each test cases.

under url "*problemset/problem*" and "*contest/*/problem*"

1. Hide the test case number of verdict "Runtime error", "Wrong answer" or "Time Limit exceeded".

under url "*/submissions/*"

1. Hide the test case number of verdict "Runtime error", "Wrong answer" or "Time Limit exceeded".
2. Hide "view source" link.

under url "*standings*"

1. The pop up frame on click of a cell will take for ever to load information.                    

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

Tên Monash University Codeforces Tool Monash University Codeforces Tool
ID ccbaciopikekdjokoagjjefnfjlkoefk
URL Chính Thức https://chromewebstore.google.com/detail/monash-university-codefor/ccbaciopikekdjokoagjjefnfjlkoefk
Mô tả Monash University ACM Teams' Training Tool.
Kích Thước Tệp 50.52 KB
Số Lần Cài Đặt 18
Phiên Bản Hiện Tại 1.4.8
Cập Nhật Lần Cuối 2016-02-21
Ngày Phát Hành 2016-02-20
Nhà Phát Triển safarisoul (Shenlu Wang)
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "content_scripts": [
        {
            "all_frames": false,
            "css": [
                "hideSolved.css"
            ],
            "js": [
                "options.js",
                "hideSolved.js"
            ],
            "matches": [
                "http:\/\/codeforces.com\/problemset",
                "http:\/\/www.codeforces.com\/problemset",
                "http:\/\/codeforces.com\/problemset?order=*",
                "http:\/\/www.codeforces.com\/problemset?order=*",
                "http:\/\/codeforces.com\/problemset\/page\/*",
                "http:\/\/www.codeforces.com\/problemset\/page\/*",
                "http:\/\/codeforces.com\/problemset\/tags\/*",
                "http:\/\/www.codeforces.com\/problemset\/tags\/*"
            ],
            "run_at": "document_idle"
        },
        {
            "all_frames": false,
            "js": [
                "options.js",
                "hideVirtual.js"
            ],
            "matches": [
                "http:\/\/codeforces.com\/gym\/*\/standings*",
                "http:\/\/www.codeforces.com\/gym\/*\/standings*",
                "http:\/\/codeforces.com\/group\/*\/standings*",
                "http:\/\/www.codeforces.com\/group\/*\/standings*"
            ],
            "run_at": "document_idle"
        },
        {
            "all_frames": false,
            "css": [
                "hideStatus.css"
            ],
            "js": [
                "options.js",
                "hideStatus.js"
            ],
            "matches": [
                "http:\/\/codeforces.com\/*\/status*",
                "http:\/\/www.codeforces.com\/*\/status*",
                "http:\/\/codeforces.com\/*\/my*",
                "http:\/\/www.codeforces.com\/*\/my*",
                "http:\/\/codeforces.com\/submissions\/*",
                "http:\/\/www.codeforces.com\/submissions\/*"
            ],
            "run_at": "document_idle"
        },
        {
            "all_frames": false,
            "css": [
                "hideStatus.css"
            ],
            "js": [
                "options.js",
                "hideDetail.js"
            ],
            "matches": [
                "http:\/\/codeforces.com\/*\/submission*",
                "http:\/\/www.codeforces.com\/*\/submission*"
            ],
            "run_at": "document_idle"
        },
        {
            "all_frames": false,
            "css": [
                "hideStatus.css"
            ],
            "matches": [
                "http:\/\/codeforces.com\/problemset\/problem*",
                "http:\/\/www.codeforces.com\/problemset\/problem*",
                "http:\/\/codeforces.com\/contest\/*\/problem*",
                "http:\/\/www.codeforces.com\/contest\/*\/problem*"
            ],
            "run_at": "document_idle"
        },
        {
            "all_frames": false,
            "js": [
                "options.js",
                "hidePopUp.js"
            ],
            "matches": [
                "http:\/\/codeforces.com\/*standings*",
                "http:\/\/www.codeforces.com\/*standings*"
            ],
            "run_at": "document_idle"
        }
    ],
    "description": "Monash University ACM Teams' Training Tool.",
    "icons": {
        "16": "monash_16.png",
        "48": "monash_48.png",
        "128": "monash_128.png"
    },
    "manifest_version": 2,
    "name": "Monash University Codeforces Tool",
    "short_name": "Monash CF",
    "permissions": [
        "tabs",
        "storage"
    ],
    "version": "1.4.8",
    "options_page": "options_page.html",
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    }
}