Even More Dimension

Let's make the LMS something worthy of tech and design

Cos'è Even More Dimension?

Even More Dimension è un'estensione di Chrome sviluppata da Yustynn, e la sua funzione principale è "Let's make the LMS something worthy of tech and design".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Even More Dimension

Scarica i file di estensione Even More Dimension 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

                        FOR SUTD STUDENTS: It improves eDimension in 4 ways
1) Better (maybe) styling.
2) Download button for every link (no more going through a pointless preview page to download your homework)
3) Download button for every folder (recursively downloads all documents in subsequent folders as well)
4) Download All button on every page (next to page title)

GitHub: https://github.com/Yustynn/evenMoreDimension

PS: This collects anonymous usage statistics, to demonstrate its usefulness to the school. The data is never tied to you specifically, so don't worry. It's to prove that the added download buttons are a very useful feature.                    

Informazioni di Base sull'Estensione

Nome Even More Dimension Even More Dimension
ID defapkcdijpdlejlkhbkklbnmcpcpijm
URL Ufficiale https://chromewebstore.google.com/detail/even-more-dimension/defapkcdijpdlejlkhbkklbnmcpcpijm
Descrizione Let's make the LMS something worthy of tech and design
Dimensione del File 52.14 KB
Conteggio Installazioni 402
Versione Corrente 1.3.10
Ultimo Aggiornamento 2022-10-17
Data di Pubblicazione 2019-05-18
Valutazione 5.00/5 Totale 16 Valutazioni
Sviluppatore Yustynn
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Even More Dimension",
    "description": "Let's make the LMS something worthy of tech and design",
    "version": "1.3.10",
    "background": {
        "scripts": [
            "eventPage.js"
        ]
    },
    "permissions": [
        "downloads"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/edimension.sutd.edu.sg\/*"
            ],
            "css": [
                "sass\/style.css"
            ],
            "js": [
                "jquery.js",
                "ga.js",
                "app.js"
            ]
        }
    ],
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "web_accessible_resources": [
        "images\/*"
    ]
}