Better Blackboard

Slight modifications to Blackboard to make it a bit better.

Better Blackboard क्या है?

Better Blackboard Matthew Kilpatrick द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Slight modifications to Blackboard to make it a bit better."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Better Blackboard एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        This add-on makes some minor modifications to the University of Manchester Blackboard homepage to make it more usable:
- Replace the 'welcome' image with a list of upcoming deadlines, and submission links
- Hide previous semester course units from the "Current courses" tab

The source code for this add-on can be found at https://github.com/Matthew-Kilpatrick/Better-Blackboard                    

एक्सटेंशन की मूल जानकारी

नाम Better Blackboard Better Blackboard
ID fkpohfnejjimkfbdfmlojhjmgjajckkk
आधिकारिक URL https://chromewebstore.google.com/detail/better-blackboard/fkpohfnejjimkfbdfmlojhjmgjajckkk
विवरण Slight modifications to Blackboard to make it a bit better.
फ़ाइल का आकार 22.81 KB
स्थापना संख्या 131
वर्तमान संस्करण 1.1.2
अंतिम अपडेट 2021-02-22
प्रकाशन तिथि 2021-02-22
रेटिंग 4.20/5 कुल 5 रेटिंग्स
डेवलपर Matthew Kilpatrick
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/Matthew-Kilpatrick/Better-Blackboard
सहायता पृष्ठ URL https://github.com/Matthew-Kilpatrick/Better-Blackboard/issues
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Better Blackboard",
    "version": "1.1.2",
    "icons": {
        "16": "assets\/icons\/favicon-16.png",
        "32": "assets\/icons\/favicon-32.png",
        "48": "assets\/icons\/favicon-48.png",
        "128": "assets\/icons\/favicon-128.png"
    },
    "description": "Slight modifications to Blackboard to make it a bit better.",
    "homepage_url": "https:\/\/github.com\/Matthew-Kilpatrick\/better-blackboard",
    "short_name": "Better Blackboard",
    "permissions": [
        "http:\/\/online.manchester.ac.uk\/*",
        "https:\/\/online.manchester.ac.uk\/*"
    ],
    "content_security_policy": "script-src 'self'; object-src 'self'",
    "author": "Matthew Kilpatrick",
    "minimum_chrome_version": "49",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/online.manchester.ac.uk\/*",
                "https:\/\/online.manchester.ac.uk\/*"
            ],
            "js": [
                "js\/contentScript.bundle.js"
            ],
            "css": [
                "assets\/css\/contentScript.css"
            ]
        }
    ]
}