Learning Suite Mod

This extension modifies the Learning Suite page to make it more friendly.

Learning Suite Mod là gì?

Learning Suite Mod là một tiện ích mở rộng Chrome được phát triển bởi BYU Coding Ninjas, và tính năng chính của nó là "This extension modifies the Learning Suite page to make it more friendly.".

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

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Learning Suite Mod

Tải xuống các tệp mở rộng Learning Suite Mod 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

                        Tired of those empty drop-down boxes on Learning Suite?
Wish you didn't have to go back to the home page to switch classes?
This extension adds course links to every page of BYU's Learning Suite.

This is by no means a permanent solution, but it will work for now.
If you find any bugs or have ideas please let me know in the feedback section.                    

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

Tên Learning Suite Mod Learning Suite Mod
ID mmhploinnaiicaipbigobhhbegichkcf
URL Chính Thức https://chromewebstore.google.com/detail/learning-suite-mod/mmhploinnaiicaipbigobhhbegichkcf
Mô tả This extension modifies the Learning Suite page to make it more friendly.
Kích Thước Tệp 6.23 KB
Số Lần Cài Đặt 20
Phiên Bản Hiện Tại 1.2
Cập Nhật Lần Cuối 2014-02-14
Ngày Phát Hành 2014-02-13
Đánh Giá 5.00/5 Tổng số 7 Đánh Giá
Nhà Phát Triển BYU Coding Ninjas
Loại Thanh Toán free
Trang Web Mở Rộng https://groups.google.com/forum/#!forum/byu-coding-ninjas
URL Trang Trợ Giúp https://groups.google.com/forum/#!forum/byu-coding-ninjas
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Learning Suite Mod",
    "description": "This extension modifies the Learning Suite page to make it more friendly.",
    "version": "1.2",
    "background": {
        "scripts": [
            "eventPage.js"
        ],
        "persistent": false
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/learningsuite.byu.edu\/student,top*"
            ],
            "js": [
                "save.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "https:\/\/learningsuite.byu.edu\/*"
            ],
            "js": [
                "load.js"
            ],
            "run_at": "document_end"
        }
    ]
}