Coop Navigator Improved for uOttawa
Fixes to make the uOttawa Coop Navigator easier to use
Was ist Coop Navigator Improved for uOttawa?
Coop Navigator Improved for uOttawa ist eine Chrome-Erweiterung, die von https://ajay.app entwickelt wurde, und ihr Hauptmerkmal ist "Fixes to make the uOttawa Coop Navigator easier to use".
Erweiterungsscreenshots
Coop Navigator Improved for uOttawa-Erweiterungs-CRX-Datei herunterladen
Laden Sie Coop Navigator Improved for uOttawa-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
Features at the current time Adds preloading to the uOttawa Coop Navigator Website - Job preloading - Clicking a job will toggle visibilit of it - It will appear right below the Job title - Modified job page layout -The description is on the right in an easier to access location. Source Code: https://github.com/ajayyy/CoopNavigatorImproved
Grundlegende Informationen zur Erweiterung
Name | |
ID | epjfkhpbgdkbdpcicaenldoebllfjfld |
Offizielle URL | https://chromewebstore.google.com/detail/coop-navigator-improved-f/epjfkhpbgdkbdpcicaenldoebllfjfld |
Beschreibung | Fixes to make the uOttawa Coop Navigator easier to use |
Dateigröße | 45.82 KB |
Installationsanzahl | 41 |
Aktuelle Version | 0.1.2 |
Letztes Update | 2020-01-23 |
Veröffentlichungsdatum | 2020-01-22 |
Entwickler | https://ajay.app |
[email protected] | |
Zahlungsart | free |
URL der Datenschutzrichtlinien-Seite | https://gist.github.com/ajayyy/bc5a2eb04bd2294b2734729dd1bc2f7f |
Unterstützte Sprachen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "short_name": "__MSG_name__", "name": "__MSG_fullName__", "description": "__MSG_description__", "version": "0.1.2", "default_locale": "en", "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "https:\/\/nav-coop-sso.uottawa.ca\/*" ], "js": [ "js\/vendor.js", "js\/content_script.js" ], "css": [ "content.css" ], "all_frames": true } ], "background": { "scripts": [ "js\/vendor.js", "js\/background.js" ] }, "permissions": [ "storage", "activeTab" ], "icons": { "256": "icon.png" } } |