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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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