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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" } } |