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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
(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 |
이메일 | [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'" } |