Learn Enhancer
Learn Enhancer improves your university experience by making it faster and easier to view PDFs on Learn or Blackboard. It does…
Learn Enhancer란 무엇입니까?
Learn Enhancer은(는) willhbr에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Learn Enhancer improves your university experience by making it faster and easier to view PDFs on Learn or Blackboard. It does…"입니다.
확장 프로그램 스크린샷
Learn Enhancer 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Learn Enhancer improves your university experience by making it faster and easier to view PDFs on Learn or Blackboard. It does this by opening PDF files full screen, not in a sh*tty iframe that is only a quarter of your screen, meaning that you can see everything you're trying to do and work effectively. Not affiliated with Moodle, Blackboard, Victoria University or UC.
확장 프로그램 기본 정보
이름 | |
ID | dnllhgllbbihefjdpamldjnlpllogkcf |
공식 URL | https://chromewebstore.google.com/detail/learn-enhancer/dnllhgllbbihefjdpamldjnlpllogkcf |
설명 | Learn Enhancer improves your university experience by making it faster and easier to view PDFs on Learn or Blackboard. It does… |
파일 크기 | 17.18 KB |
설치 횟수 | 226 |
현재 버전 | 2.1.1 |
최근 업데이트 | 2018-07-21 |
출시 날짜 | 2018-07-20 |
평점 | 4.83/5 총 23 개의 평점 |
개발자 | willhbr |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/willhbr/learn-enhancer |
도움말 페이지 URL | https://github.com/willhbr/learn-enhancer/issues |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Learn Enhancer", "version": "2.1.1", "manifest_version": 2, "content_scripts": [ { "matches": [ "http:\/\/learn.canterbury.ac.nz\/*", "https:\/\/learn.canterbury.ac.nz\/*" ], "js": [ "pranks.js", "content.js" ], "run_at": "document_end" }, { "matches": [ "https:\/\/login.canterbury.ac.nz\/idp\/Authn\/UserPassword" ], "js": [ "login.js" ], "css": [ "login.css" ], "run_at": "document_start" }, { "matches": [ "http:\/\/learn.canterbury.ac.nz\/*", "https:\/\/learn.canterbury.ac.nz\/*" ], "exclude_matches": [ "http:\/\/learn.canterbury.ac.nz\/pluginfile.php\/*", "https:\/\/learn.canterbury.ac.nz\/pluginfile.php\/*" ], "css": [ "content.css" ] } ], "background": { "scripts": [ "background.js" ] }, "permissions": [ "webRequestBlocking", "webRequest", "storage", "http:\/\/learn.canterbury.ac.nz\/*", "https:\/\/login.canterbury.ac.nz\/idp\/Authn\/UserPassword" ], "icons": { "48": "48.png", "128": "128.png" }, "options_page": "options.html" } |