Even More Dimension
Let's make the LMS something worthy of tech and design
Что такое Even More Dimension?
Even More Dimension - это расширение Chrome, разработанное Yustynn, и его основная функция - "Let's make the LMS something worthy of tech and design".
Снимки экрана расширения
Скачать файл CRX расширения Even More Dimension
Скачайте файлы расширений Even More Dimension в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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.
Основная информация о расширении
Название | Even More Dimension |
ID | defapkcdijpdlejlkhbkklbnmcpcpijm |
Официальный URL | https://chromewebstore.google.com/detail/even-more-dimension/defapkcdijpdlejlkhbkklbnmcpcpijm |
Описание | Let's make the LMS something worthy of tech and design |
Размер файла | 52.14 KB |
Количество установок | 402 |
Текущая Версия | 1.3.10 |
Последнее Обновление | 2022-10-17 |
Дата публикации | 2019-05-18 |
Рейтинг | 5.00/5 Всего 16 оценок |
Разработчик | Yustynn |
Электронная почта | [email protected] |
Тип оплаты | free |
Поддерживаемые языки | 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\/*" ] } |