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 là gì?
Learn Enhancer là một tiện ích mở rộng Chrome được phát triển bởi willhbr, và tính năng chính của nó là "Learn Enhancer improves your university experience by making it faster and easier to view PDFs on Learn or Blackboard. It does…".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Learn Enhancer
Tải xuống các tệp mở rộng Learn Enhancer dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | dnllhgllbbihefjdpamldjnlpllogkcf |
URL Chính Thức | https://chromewebstore.google.com/detail/learn-enhancer/dnllhgllbbihefjdpamldjnlpllogkcf |
Mô tả | Learn Enhancer improves your university experience by making it faster and easier to view PDFs on Learn or Blackboard. It does… |
Kích Thước Tệp | 17.18 KB |
Số Lần Cài Đặt | 226 |
Phiên Bản Hiện Tại | 2.1.1 |
Cập Nhật Lần Cuối | 2018-07-21 |
Ngày Phát Hành | 2018-07-20 |
Đánh Giá | 4.83/5 Tổng số 23 Đánh Giá |
Nhà Phát Triển | willhbr |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/willhbr/learn-enhancer |
URL Trang Trợ Giúp | https://github.com/willhbr/learn-enhancer/issues |
Ngôn Ngữ Được Hỗ Trợ | 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" } |