Even More Dimension

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

什么是Even More Dimension?

Even More Dimension是由Yustynn开发的Chrome扩展程序,该扩展的主要功能是“Let's make the LMS something worthy of tech and design”。

扩展截图

screenshot

下载Even More Dimension扩展crx文件

下载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 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\/*"
    ]
}