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