Timus Friends

Adds Codeforces-style friending to the Timus Online Judge.

Timus Friends là gì?

Timus Friends là một tiện ích mở rộng Chrome được phát triển bởi Slava Shklyaev, và tính năng chính của nó là "Adds Codeforces-style friending to the Timus Online Judge.".

Ả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 Timus Friends

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

                                            

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

Tên Timus Friends Timus Friends
ID fnldfcnfdacapllemlcdmmlijnpbcoal
URL Chính Thức https://chromewebstore.google.com/detail/timus-friends/fnldfcnfdacapllemlcdmmlijnpbcoal
Mô tả Adds Codeforces-style friending to the Timus Online Judge.
Kích Thước Tệp 29.14 KB
Số Lần Cài Đặt 73
Phiên Bản Hiện Tại 1.1.0
Cập Nhật Lần Cuối 2016-07-12
Ngày Phát Hành 2016-07-11
Đánh Giá 5.00/5 Tổng số 5 Đánh Giá
Nhà Phát Triển Slava Shklyaev
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/slava-sh/timus-friends
Ngôn Ngữ Được Hỗ Trợ en,ru
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "version": "1.1.0",
    "manifest_version": 2,
    "description": "__MSG_appDescription__",
    "icons": {
        "128": "images\/icon-128.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "scripts\/background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/acm.timus.ru\/*"
            ],
            "js": [
                "scripts\/element_observer.js",
                "scripts\/locales.js",
                "scripts\/common.js",
                "scripts\/menu.js"
            ],
            "css": [
                "styles\/button.css"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "*:\/\/acm.timus.ru\/author.aspx?*"
            ],
            "js": [
                "scripts\/element_observer.js",
                "scripts\/locales.js",
                "scripts\/common.js",
                "scripts\/author.js",
                "scripts\/ranklist.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "*:\/\/acm.timus.ru\/ranklist.aspx*",
                "*:\/\/acm.timus.ru\/search.aspx*"
            ],
            "exclude_matches": [
                "*:\/\/acm.timus.ru\/ranklist.aspx?friends*"
            ],
            "js": [
                "scripts\/element_observer.js",
                "scripts\/locales.js",
                "scripts\/common.js",
                "scripts\/ranklist.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "*:\/\/acm.timus.ru\/ranklist.aspx?friends*"
            ],
            "js": [
                "scripts\/element_observer.js",
                "scripts\/locales.js",
                "scripts\/common.js",
                "scripts\/friends.js"
            ],
            "css": [
                "styles\/friends.css"
            ],
            "run_at": "document_start"
        }
    ]
}