Codeforces++
Codeforces extension pack
Codeforces++とは何ですか?
Codeforces++はLeonardo Rietherによって開発されたChromeの拡張機能で、その主な機能は「Codeforces extension pack」です。
拡張機能のスクリーンショット
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 拡張機能の基本情報
| 名前 | |
| ID | ehbcfilpfnlahficlpimomapmbccieoi |
| 公式URL | 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 |
| Eメール | [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"
}
} | |