Whiteboard

Whiteboard is a UI enhancement suite for The University of Texas at Dallas's online learning platform, eLearning. This extension…

Cos'è Whiteboard?

Whiteboard è un'estensione di Chrome sviluppata da Sunny Guan, e la sua funzione principale è "Whiteboard is a UI enhancement suite for The University of Texas at Dallas's online learning platform, eLearning. This extension…".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Whiteboard

Scarica i file di estensione Whiteboard 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

                        Whiteboard is a UI enhancement suite for The University of Texas at Dallas's online learning platform, eLearning. This extension provides a modern interface with useful features such as grades overview, weekly calendar, notifications, and much more. It also provides RateMyProfessor and UTDGrades information as additional columns on CourseBook.                    

Informazioni di Base sull'Estensione

Nome Whiteboard Whiteboard
ID hgoiijmhpdjkmecnlkpdcflgfjebpbhe
URL Ufficiale https://chromewebstore.google.com/detail/whiteboard/hgoiijmhpdjkmecnlkpdcflgfjebpbhe
Descrizione Whiteboard is a UI enhancement suite for The University of Texas at Dallas's online learning platform, eLearning. This extension…
Dimensione del File 397 KB
Conteggio Installazioni 2,000
Versione Corrente 1.3.4
Ultimo Aggiornamento 2023-01-18
Data di Pubblicazione 2020-09-28
Valutazione 5.00/5 Totale 13 Valutazioni
Sviluppatore Sunny Guan
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/sunnyguan/whiteboard
URL della Pagina di Aiuto https://github.com/sunnyguan/whiteboard
Lingue Supportate en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Whiteboard",
    "version": "1.3.4",
    "manifest_version": 2,
    "content_scripts": [
        {
            "matches": [
                "https:\/\/elearning.utdallas.edu\/*",
                "https:\/\/coursebook.utdallas.edu\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        "*"
    ],
    "background": {
        "scripts": [
            "bg_page.js"
        ],
        "persistent": false
    },
    "permissions": [
        "storage"
    ],
    "browser_action": {
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "temoc16.png",
        "48": "temoc48.png",
        "128": "temoc128.png"
    }
}