Schoology Improvements
A Extension that adds darkmode along with other features to schoology
Schoology Improvements là gì?
Schoology Improvements là một tiện ích mở rộng Chrome được phát triển bởi Wyatt Whorton, và tính năng chính của nó là "A Extension that adds darkmode along with other features to schoology".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Schoology Improvements
Tải xuống các tệp mở rộng Schoology Improvements 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
Improves the overall user exipierence and user interaction with schoology
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Schoology Improvements |
ID | djcedadddodkobaegkkcjpanffibkhbe |
URL Chính Thức | https://chromewebstore.google.com/detail/schoology-improvements/djcedadddodkobaegkkcjpanffibkhbe |
Mô tả | A Extension that adds darkmode along with other features to schoology |
Kích Thước Tệp | 667 KB |
Số Lần Cài Đặt | 122 |
Phiên Bản Hiện Tại | 1.0.0 |
Cập Nhật Lần Cuối | 2021-01-12 |
Ngày Phát Hành | 2021-01-12 |
Đánh Giá | 5.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | Wyatt Whorton |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/ChickenBone/dps-schoology |
URL Trang Trợ Giúp | https://github.com/ChickenBone/dps-schoology/issues |
Ngôn Ngữ Được Hỗ Trợ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "background": { "scripts": [ ".\/background.js" ] }, "browser_action": { "default_popup": ".\/popup.html" }, "content_scripts": [ { "all_frames": true, "js": [ ".\/contentScripts.js" ], "css": [ ".\/contentScripts.js" ], "matches": [ "http:\/\/schoology.dpsk12.org\/*", "https:\/\/schoology.dpsk12.org\/*" ], "run_at": "document_end" }, { "all_frames": true, "js": [ ".\/hideAtStart.js" ], "css": [ ".\/hideAtStart.js" ], "matches": [ "http:\/\/schoology.dpsk12.org\/*", "https:\/\/schoology.dpsk12.org\/*" ], "run_at": "document_start" } ], "description": "A Extension that adds darkmode along with other features to schoology", "icons": { "16": "assets\/icons\/icon_16.png", "32": "assets\/icons\/icon_32.png", "64": "assets\/icons\/icon_64.png", "128": "assets\/icons\/icon_128.png" }, "manifest_version": 2, "name": "Schoology Improvements", "options_ui": { "chrome_style": false, "page": ".\/options.html" }, "permissions": [ "http:\/\/schoology.dpsk12.org\/*", "https:\/\/schoology.dpsk12.org\/*", "background", "storage", "webRequest" ], "version": "1.0.0", "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'" } |