Coop Navigator Improved for uOttawa
Fixes to make the uOttawa Coop Navigator easier to use
Wat is Coop Navigator Improved for uOttawa?
Coop Navigator Improved for uOttawa is een Chrome-extensie ontwikkeld door https://ajay.app, en de belangrijkste functie is "Fixes to make the uOttawa Coop Navigator easier to use".
Extensie Screenshots
Download het CRX-bestand van de extensie Coop Navigator Improved for uOttawa
Download Coop Navigator Improved for uOttawa-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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
Basisinformatie over de Extensie
Naam | |
ID | epjfkhpbgdkbdpcicaenldoebllfjfld |
Officiële URL | https://chromewebstore.google.com/detail/coop-navigator-improved-f/epjfkhpbgdkbdpcicaenldoebllfjfld |
Beschrijving | Fixes to make the uOttawa Coop Navigator easier to use |
Bestandsgrootte | 45.82 KB |
Aantal Installaties | 41 |
Huidige Versie | 0.1.2 |
Laatst Bijgewerkt | 2020-01-23 |
Publicatiedatum | 2020-01-22 |
Ontwikkelaar | https://ajay.app |
[email protected] | |
Betalingswijze | free |
URL van de Privacybeleid Pagina | https://gist.github.com/ajayyy/bc5a2eb04bd2294b2734729dd1bc2f7f |
Ondersteunde Talen | 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" } } |