Gheith Ghood

Adds features and improves the look of Dr. Gheith's 439 project website

Was ist Gheith Ghood?

Gheith Ghood ist eine Chrome-Erweiterung, die von Sriram Hariharan entwickelt wurde, und ihr Hauptmerkmal ist "Adds features and improves the look of Dr. Gheith's 439 project website".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Gheith Ghood-Erweiterungs-CRX-Datei herunterladen

Laden Sie Gheith Ghood-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        (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                    

Grundlegende Informationen zur Erweiterung

Name Gheith Ghood Gheith Ghood
ID pgppljjidhphknbidcbolecekdmiknih
Offizielle URL https://chrome.google.com/webstore/detail/gheith-ghood/pgppljjidhphknbidcbolecekdmiknih
Beschreibung Adds features and improves the look of Dr. Gheith's 439 project website
Dateigröße 203 KB
Installationsanzahl 14
Aktuelle Version 0.0.1
Letztes Update 2019-02-27
Veröffentlichungsdatum 2019-02-26
Bewertung 5.00/5 Insgesamt 5 Bewertungen
Entwickler Sriram Hariharan
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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'"
}