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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Learn Enhancer improves your university experience by making it faster and easier to view PDFs on Learn or Blackboard. It does…"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Learn Enhancer एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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" } |