Blackboard Enhancement Suite
Various layout and style changes intended to improve the usability of Blackboard
Blackboard Enhancement Suite란 무엇입니까?
Blackboard Enhancement Suite은(는) https://devinrousso.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Various layout and style changes intended to improve the usability of Blackboard"입니다.
확장 프로그램 스크린샷
Blackboard Enhancement Suite 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
If you like this extension and want it to work with your school, create an issue on the support page and I will do my best to make it work. Version 1.3.0: - A settings page has now been added to let you choose between making the "List View" or "Tree View" default in the Forum/Discussion page Version 1.2.0: - Added support for all schools matching "blackboard.___.edu" and "bb.___.edu" - Added support for versions that don't use frames Version 1.1.0: - Opening classes in new tabs now preserves the navigational header Version 1.0.0: - Created extension - Currently supported schools: USC - Logo in top left corner will now reload current page instead of opening Blackboard in a new tab - Past courses (under My Courses Plus module) will be hidden from immediate sight and can be accessed by clicking the "Show Past Courses" link
확장 프로그램 기본 정보
이름 | Blackboard Enhancement Suite |
ID | mbmniljdacmobchkdodbbimnnfemgjda |
공식 URL | https://chromewebstore.google.com/detail/blackboard-enhancement-su/mbmniljdacmobchkdodbbimnnfemgjda |
설명 | Various layout and style changes intended to improve the usability of Blackboard |
파일 크기 | 39.52 KB |
설치 횟수 | 8,108 |
현재 버전 | 1.3 |
최근 업데이트 | 2015-12-20 |
출시 날짜 | 2015-12-19 |
평점 | 2.88/5 총 40 개의 평점 |
개발자 | https://devinrousso.com |
결제 유형 | free |
도움말 페이지 URL | https://github.com/dcrousso/BlackboardEnhancementSuite/issues |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "__MSG_appName__", "version": "1.3", "default_locale": "en", "description": "__MSG_appDescription__", "permissions": [ "storage" ], "icons": { "16": "images\/icon-16.png", "32": "images\/icon-32.png", "48": "images\/icon-48.png", "128": "images\/icon-128.png" }, "content_scripts": [ { "matches": [ "http:\/\/*.edu\/*", "https:\/\/*.edu\/*" ], "include_globs": [ "https:\/\/bb.*.edu\/*", "http:\/\/bb.*.edu\/*", "https:\/\/blackboard.*.edu\/*", "http:\/\/blackboard.*.edu\/*" ], "js": [ "scripts\/enhance.js" ], "run_at": "document_end" } ], "options_page": "html\/options.html", "background": { "page": "html\/background.html", "persistent": false } } |