Even More Dimension
Let's make the LMS something worthy of tech and design
Qu'est-ce que Even More Dimension ?
Even More Dimension est une extension Chrome développée par Yustynn, et sa fonction principale est "Let's make the LMS something worthy of tech and design".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Even More Dimension
Téléchargez les fichiers d'extension Even More Dimension au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Even More Dimension |
ID | defapkcdijpdlejlkhbkklbnmcpcpijm |
URL Officiel | https://chromewebstore.google.com/detail/even-more-dimension/defapkcdijpdlejlkhbkklbnmcpcpijm |
Description | Let's make the LMS something worthy of tech and design |
Taille du Fichier | 52.14 KB |
Nombre d'Installations | 402 |
Version Actuelle | 1.3.10 |
Dernière Mise à Jour | 2022-10-17 |
Date de Publication | 2019-05-18 |
Évaluation | 5.00/5 Total 16 Évaluations |
Développeur | Yustynn |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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\/*" ] } |