Coop Navigator Improved for uOttawa

Fixes to make the uOttawa Coop Navigator easier to use

Coop Navigator Improved for uOttawa là gì?

Coop Navigator Improved for uOttawa là một tiện ích mở rộng Chrome được phát triển bởi https://ajay.app, và tính năng chính của nó là "Fixes to make the uOttawa Coop Navigator easier to use".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Coop Navigator Improved for uOttawa

Tải xuống các tệp mở rộng Coop Navigator Improved for uOttawa dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Coop Navigator Improved for uOttawa Coop Navigator Improved for uOttawa
ID epjfkhpbgdkbdpcicaenldoebllfjfld
URL Chính Thức https://chromewebstore.google.com/detail/coop-navigator-improved-f/epjfkhpbgdkbdpcicaenldoebllfjfld
Mô tả Fixes to make the uOttawa Coop Navigator easier to use
Kích Thước Tệp 45.82 KB
Số Lần Cài Đặt 41
Phiên Bản Hiện Tại 0.1.2
Cập Nhật Lần Cuối 2020-01-23
Ngày Phát Hành 2020-01-22
Nhà Phát Triển https://ajay.app
Email [email protected]
Loại Thanh Toán free
URL Trang Chính Sách Bảo Mật https://gist.github.com/ajayyy/bc5a2eb04bd2294b2734729dd1bc2f7f
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}