Even More Dimension
Let's make the LMS something worthy of tech and design
O que é Even More Dimension?
Even More Dimension é uma extensão do Chrome desenvolvida por Yustynn, e sua principal característica é "Let's make the LMS something worthy of tech and design".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Even More Dimension
Baixe arquivos de extensão Even More Dimension no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | Even More Dimension |
ID | defapkcdijpdlejlkhbkklbnmcpcpijm |
URL Oficial | https://chromewebstore.google.com/detail/even-more-dimension/defapkcdijpdlejlkhbkklbnmcpcpijm |
Descrição | Let's make the LMS something worthy of tech and design |
Tamanho do Arquivo | 52.14 KB |
Contagem de Instalações | 402 |
Versão Atual | 1.3.10 |
Última Atualização | 2022-10-17 |
Data de Publicação | 2019-05-18 |
Classificação | 5.00/5 Total de 16 Avaliações |
Desenvolvedor | Yustynn |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | 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\/*" ] } |