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 |
Eメール | [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" } } |