Even More Dimension

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

Wat is Even More Dimension?

Even More Dimension is een Chrome-extensie ontwikkeld door Yustynn, en de belangrijkste functie is "Let's make the LMS something worthy of tech and design".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Even More Dimension

Download Even More Dimension-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Even More Dimension Even More Dimension
ID defapkcdijpdlejlkhbkklbnmcpcpijm
Officiële URL https://chromewebstore.google.com/detail/even-more-dimension/defapkcdijpdlejlkhbkklbnmcpcpijm
Beschrijving Let's make the LMS something worthy of tech and design
Bestandsgrootte 52.14 KB
Aantal Installaties 402
Huidige Versie 1.3.10
Laatst Bijgewerkt 2022-10-17
Publicatiedatum 2019-05-18
Beoordeling 5.00/5 Totaal 16 Beoordelingen
Ontwikkelaar Yustynn
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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\/*"
    ]
}