Codeforces++

Codeforces extension pack

什麼是Codeforces++?

Codeforces++是由Leonardo Riether開發的Chrome擴展程式,該擴展的主要功能是“Codeforces extension pack”。

擴展截圖

screenshot
screenshot
screenshot
screenshot

下載Codeforces++擴展crx文件

下載Codeforces++擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Ever wanted Codeforces to have handy shortcuts, auto-updating standings, problem tags that you can hide/show on demand, better site navigation, a dark theme, or all of the above? These and many more features are available in Codeforces++! This extension is open-source and hosted at GitHub https://github.com/LeoRiether/CodeforcesPP                    

擴展基本資訊

名稱 Codeforces++ Codeforces++
ID ehbcfilpfnlahficlpimomapmbccieoi
官方網址 https://chromewebstore.google.com/detail/codeforces++/ehbcfilpfnlahficlpimomapmbccieoi
簡介 Codeforces extension pack
檔案大小 28.61 KB
安裝次數 3,692
目前版本 2.4.0
更新時間 2023-02-22
上架時間 2020-05-20
評分 4.82/5 共 17 次評分
開發者 Leonardo Riether
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/LeoRiether/CodeforcesPP
說明頁面URL https://github.com/LeoRiether/CodeforcesPP/issues/
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Codeforces++",
    "description": "Codeforces extension pack",
    "version": "2.4.0",
    "manifest_version": 2,
    "permissions": [
        "storage",
        "*:\/\/codeforces.com\/*",
        "http:\/\/fonts.googleapis.com\/*",
        "https:\/\/fonts.googleapis.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/codeforces.com\/*"
            ],
            "js": [
                "browser-polyfill.min.js",
                "contentScript.js"
            ],
            "css": [
                "common.css"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        "*.js"
    ],
    "background": {
        "persistent": false,
        "scripts": [
            "browser-polyfill.min.js",
            "background.js"
        ]
    },
    "browser_action": {
        "default_popup": "popup.html",
        "default_title": "Codeforces++"
    },
    "icons": {
        "16": "icons\/16x16.png",
        "32": "icons\/32x32.png",
        "48": "icons\/48x48.png",
        "128": "icons\/128x128.png"
    }
}