Prettify USACO
Get prettier, more readable USACO Solutions!
Prettify USACOとは何ですか?
Prettify USACOはPrettify USACOによって開発されたChromeの拡張機能で、その主な機能は「Get prettier, more readable USACO Solutions!」です。
拡張機能のスクリーンショット
Prettify USACO拡張機能のCRXファイルをダウンロード
Prettify USACO拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
This extension automatically adds code syntax highlighting to USACO solution pages, making them easier to read and understand. You can also choose whether you want it to be in dark (default), or light mode! It auto detects whether the solution code is in C++, Java, or Python and applies the appropriate highlighting. Enjoy!
拡張機能の基本情報
名前 | Prettify USACO |
ID | bkmonfipialhchjelomnlmmpbmhpgnnd |
公式URL | https://chromewebstore.google.com/detail/prettify-usaco/bkmonfipialhchjelomnlmmpbmhpgnnd |
説明 | Get prettier, more readable USACO Solutions! |
ファイルサイズ | 424 KB |
インストール数 | 109 |
現在のバージョン | 1.12 |
最終更新日 | 2022-02-14 |
公開日 | 2022-02-08 |
評価 | 5.00/5 合計 5 レビュー |
開発者 | Prettify USACO |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/PrettifyUSACO/PrettifyUSACO#readme |
対応言語 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Prettify USACO", "description": "Get prettier, more readable USACO Solutions!", "version": "1.12", "manifest_version": 3, "icons": { "128": "src\/images\/icon128.png" }, "content_scripts": [ { "matches": [ "http:\/\/usaco.org\/*", "http:\/\/www.usaco.org\/*", "*:\/\/www.usaco.org\/*" ], "js": [ "src\/contentScript.js" ], "css": [ "styles.css" ] } ], "action": { "default_popup": "src\/popup\/popup.html", "default_title": "Prettify USACO" }, "background": { "service_worker": "src\/background.js" }, "permissions": [ "storage" ], "web_accessible_resources": [ { "resources": [ "prism\/*" ], "matches": [ "http:\/\/usaco.org\/*", "http:\/\/www.usaco.org\/*", "*:\/\/www.usaco.org\/*" ] } ] } |