Better Brightspace
Changes the Brightspace homepage to focus on current courses.
Better Brightspace क्या है?
Better Brightspace 2matto द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Changes the Brightspace homepage to focus on current courses."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Better Brightspace एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
एक्सटेंशन की मूल जानकारी
नाम | |
ID | hgfcmgimdjhecjhmhemcdibgfcnhmmgd |
आधिकारिक URL | https://chromewebstore.google.com/detail/better-brightspace/hgfcmgimdjhecjhmhemcdibgfcnhmmgd |
विवरण | Changes the Brightspace homepage to focus on current courses. |
फ़ाइल का आकार | 47.41 KB |
स्थापना संख्या | 45 |
वर्तमान संस्करण | 0.0.0.6 |
अंतिम अपडेट | 2019-01-21 |
प्रकाशन तिथि | 2019-01-21 |
रेटिंग | 1.00/5 कुल 1 रेटिंग्स |
डेवलपर | 2matto |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Better Brightspace", "version": "0.0.0.6", "description": "Changes the Brightspace homepage to focus on current courses.", "icons": { "128": "BetterBrightSpace-128.png" }, "content_scripts": [ { "run_at": "document_start", "matches": [ "*:\/\/*.brightspace.com\/*" ], "css": [ "content.css" ] }, { "run_at": "document_end", "matches": [ "*:\/\/*.brightspace.com\/d2l\/home" ], "js": [ "home-content.js" ] }, { "run_at": "document_end", "matches": [ "*:\/\/*.brightspace.com\/d2l\/le\/content\/*\/Home" ], "js": [ "course-content.js" ] } ], "browser_action": { "default_icon": "BetterBrightSpace-128.png" }, "manifest_version": 2 } |