Gheith Ghood
Adds features and improves the look of Dr. Gheith's 439 project website
Gheith Ghoodとは何ですか?
Gheith GhoodはSriram Hariharanによって開発されたChromeの拡張機能で、その主な機能は「Adds features and improves the look of Dr. Gheith's 439 project website」です。
拡張機能のスクリーンショット
Gheith Ghood拡張機能のCRXファイルをダウンロード
Gheith Ghood拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
(Also known as Gheith's Ghrome Ghextension") This extension enhances Gheith’s website with stylistic changes and new features, letting you: - Easily search for and filter the list by commit ID - Sort commits by number of tests passed - View a condensed list of tests that you failed, as well as see if Dr. Gheith is also failing them - Open the source code for a test just by clicking on it, and without downloading the file - See how many people are failing a certain test - See a breakdown for the overall class mood - Forget your stress by looking at our pretty colors The extension is open source at https://github.com/sghsri/Gheith-Ghood Developed by Sriram Hariharan & Chris Nunes
拡張機能の基本情報
名前 | |
ID | pgppljjidhphknbidcbolecekdmiknih |
公式URL | https://chrome.google.com/webstore/detail/gheith-ghood/pgppljjidhphknbidcbolecekdmiknih |
説明 | Adds features and improves the look of Dr. Gheith's 439 project website |
ファイルサイズ | 203 KB |
インストール数 | 14 |
現在のバージョン | 0.0.1 |
最終更新日 | 2019-02-27 |
公開日 | 2019-02-26 |
評価 | 5.00/5 合計 5 レビュー |
開発者 | Sriram Hariharan |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Gheith Ghood", "version": "0.0.1", "description": "Adds features and improves the look of Dr. Gheith's 439 project website", "permissions": [ "tabs", "declarativeContent", "identity", "*:\/\/*.cs.utexas.edu\/~gheith\/*" ], "content_scripts": [ { "js": [ "js\/jquery-3.3.1.min.js", "js\/highcharts.js", "js\/highcharts-more.js", "js\/content.js" ], "css": [ "css\/styles.css" ], "matches": [ "https:\/\/www.cs.utexas.edu\/~gheith\/*" ] } ], "background": { "page": "html\/background.html" }, "icons": { "16": "icons\/icon16.png", "32": "icons\/icon32.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "content_security_policy": "script-src 'self' https:\/\/www.gstatic.com\/ https:\/\/*.firebaseio.com https:\/\/www.googleapis.com; object-src 'self'" } |