DTU Course Analyzer

Analyzes and scores courses on kurser.dtu.dk/xxxxx

Cos'è DTU Course Analyzer?

DTU Course Analyzer è un'estensione di Chrome sviluppata da dtu.course.analyzer, e la sua funzione principale è "Analyzes and scores courses on kurser.dtu.dk/xxxxx".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione DTU Course Analyzer

Scarica i file di estensione DTU Course Analyzer in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        Analyzes courses on DTU's coursebase and ranks them. Install the extension and go to eg. http://kurser.dtu.dk/course/01005 to see an analysis. The higher the numbers are the better the course is.

This is an open-source project: https://github.com/OskarNS/dtu-course-analyzer                    

Informazioni di Base sull'Estensione

Nome DTU Course Analyzer DTU Course Analyzer
ID bimhgdngikcnelkhjindmdghndfmdcde
URL Ufficiale https://chromewebstore.google.com/detail/dtu-course-analyzer/bimhgdngikcnelkhjindmdghndfmdcde
Descrizione Analyzes and scores courses on kurser.dtu.dk/xxxxx
Dimensione del File 309 KB
Conteggio Installazioni 9,382
Versione Corrente 1.2.3
Ultimo Aggiornamento 2019-09-16
Data di Pubblicazione 2019-09-16
Valutazione 5.00/5 Totale 13 Valutazioni
Sviluppatore dtu.course.analyzer
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "DTU Course Analyzer",
    "description": "Analyzes and scores courses on kurser.dtu.dk\/xxxxx",
    "version": "1.2.3",
    "manifest_version": 2,
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/kurser.dtu.dk\/course\/*",
                "https:\/\/kurser.dtu.dk\/course\/*"
            ],
            "css": [
                "css\/jquery.dataTables.css"
            ],
            "js": [
                "js\/jquery.js",
                "contentscript.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "db\/data.js",
        "contentscript.js"
    ],
    "background": {
        "scripts": [
            "js\/jquery.js",
            "\/db\/data.js",
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "icon128.png"
    }
}