Old Blackboard

Reverts Blackboard back to the old UI

Old Blackboard란 무엇입니까?

Old Blackboard은(는) Jonoym에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Reverts Blackboard back to the old UI"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Old Blackboard 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        UQ has updated its Blackboard UI to something that doesn't feel great to use (animations and inability to open multiple tabs easily) and the link to the previous UI no longer has methods of navigating to courses and to the homepage.

This extension builds on the old UI by adding back the header and course list. 

https://addons.mozilla.org/en-GB/firefox/addon/old-blackboard/                    

확장 프로그램 기본 정보

이름 Old Blackboard Old Blackboard
ID olgiclpbcddkfemohjbfoppcccffdkil
공식 URL https://chromewebstore.google.com/detail/old-blackboard/olgiclpbcddkfemohjbfoppcccffdkil
설명 Reverts Blackboard back to the old UI
파일 크기 306 KB
설치 횟수 66
현재 버전 1.1
최근 업데이트 2023-10-11
출시 날짜 2023-06-25
평점 5.00/5 총 4 개의 평점
개발자 Jonoym
이메일 [email protected]
결제 유형 free
지원되는 언어 en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Old Blackboard",
    "description": "Reverts Blackboard back to the old UI",
    "version": "1.1",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/learn.uq.edu.au\/webapps\/*"
            ],
            "js": [
                "code\/content.js"
            ],
            "css": [
                "code\/styles.css"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "https:\/\/learn.uq.edu.au\/ultra\/course",
                "https:\/\/learn.uq.edu.au\/ultra"
            ],
            "js": [
                "code\/redirect.js"
            ],
            "run_at": "document_start"
        }
    ],
    "icons": {
        "128": "128.png"
    }
}