Coop Navigator Improved for uOttawa
Fixes to make the uOttawa Coop Navigator easier to use
什么是Coop Navigator Improved for uOttawa?
Coop Navigator Improved for uOttawa是由https://ajay.app开发的Chrome扩展程序,该扩展的主要功能是“Fixes to make the uOttawa Coop Navigator easier to use”。
扩展截图
下载Coop Navigator Improved for uOttawa扩展crx文件
下载Coop Navigator Improved for uOttawa扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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
扩展基本信息
名称 | |
ID | epjfkhpbgdkbdpcicaenldoebllfjfld |
官方URL | https://chromewebstore.google.com/detail/coop-navigator-improved-f/epjfkhpbgdkbdpcicaenldoebllfjfld |
简介 | Fixes to make the uOttawa Coop Navigator easier to use |
文件大小 | 45.82 KB |
安装次数 | 41 |
当前版本 | 0.1.2 |
更新时间 | 2020-01-23 |
上架时间 | 2020-01-22 |
开发者 | https://ajay.app |
电子邮箱 | [email protected] |
付费类型 | free |
隐私政策页面URL | https://gist.github.com/ajayyy/bc5a2eb04bd2294b2734729dd1bc2f7f |
支持的语言 | 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" } } |