Coop Navigator Improved for uOttawa
Fixes to make the uOttawa Coop Navigator easier to use
Qu'est-ce que Coop Navigator Improved for uOttawa ?
Coop Navigator Improved for uOttawa est une extension Chrome développée par https://ajay.app, et sa fonction principale est "Fixes to make the uOttawa Coop Navigator easier to use".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Coop Navigator Improved for uOttawa
Téléchargez les fichiers d'extension Coop Navigator Improved for uOttawa au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | |
ID | epjfkhpbgdkbdpcicaenldoebllfjfld |
URL Officiel | https://chromewebstore.google.com/detail/coop-navigator-improved-f/epjfkhpbgdkbdpcicaenldoebllfjfld |
Description | Fixes to make the uOttawa Coop Navigator easier to use |
Taille du Fichier | 45.82 KB |
Nombre d'Installations | 41 |
Version Actuelle | 0.1.2 |
Dernière Mise à Jour | 2020-01-23 |
Date de Publication | 2020-01-22 |
Développeur | https://ajay.app |
[email protected] | |
Type de Paiement | free |
URL de la Page de Politique de Confidentialité | https://gist.github.com/ajayyy/bc5a2eb04bd2294b2734729dd1bc2f7f |
Langues Prises en Charge | 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" } } |