Schoology Fixer

This extension alters the look and feel of the schoology webpage according to user preference

Schoology Fixer là gì?

Schoology Fixer là một tiện ích mở rộng Chrome được phát triển bởi williamspencerdev, và tính năng chính của nó là "This extension alters the look and feel of the schoology webpage according to user preference".

Ả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 Schoology Fixer

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

                        This Google Chrome extension effects the following changes on the Schoology webpage:

  It affixes the taskbar to the top of the window such that its position remains constant independent of scroll position.
  If hides all assignments marked as overdue by Schoology such that only upcoming assignments are visible.

Each of these may be enabled or disabled by clicking on the icon in the top bar.                    

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

Tên Schoology Fixer Schoology Fixer
ID mecodadpcihocjelfkpnmnmmejfljkpf
URL Chính Thức https://chromewebstore.google.com/detail/schoology-fixer/mecodadpcihocjelfkpnmnmmejfljkpf
Mô tả This extension alters the look and feel of the schoology webpage according to user preference
Kích Thước Tệp 34.63 KB
Số Lần Cài Đặt 45
Phiên Bản Hiện Tại 1.1.0
Cập Nhật Lần Cuối 2018-09-08
Ngày Phát Hành 2018-09-08
Nhà Phát Triển williamspencerdev
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Schoology Fixer",
    "description": "This extension alters the look and feel of the schoology webpage according to user preference",
    "version": "1.1.0",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html",
        "default_title": "SF Options"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/app.schoology.com\/*"
            ],
            "js": [
                "jquery-3.1.1.min.js",
                "script.js"
            ]
        }
    ]
}