Schoology Improvements
A Extension that adds darkmode along with other features to schoology
什么是Schoology Improvements?
Schoology Improvements是由Wyatt Whorton开发的Chrome扩展程序,该扩展的主要功能是“A Extension that adds darkmode along with other features to schoology”。
扩展截图
下载Schoology Improvements扩展crx文件
下载Schoology Improvements扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Improves the overall user exipierence and user interaction with schoology 扩展基本信息
| 名称 | |
| ID | djcedadddodkobaegkkcjpanffibkhbe |
| 官方URL | https://chromewebstore.google.com/detail/schoology-improvements/djcedadddodkobaegkkcjpanffibkhbe |
| 简介 | A Extension that adds darkmode along with other features to schoology |
| 文件大小 | 667 KB |
| 安装次数 | 122 |
| 当前版本 | 1.0.0 |
| 更新时间 | 2021-01-12 |
| 上架时间 | 2021-01-12 |
| 评分 | 5.00/5 共1次评分 |
| 开发者 | Wyatt Whorton |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://github.com/ChickenBone/dps-schoology |
| 帮助页面URL | https://github.com/ChickenBone/dps-schoology/issues |
| 支持的语言 | 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'"
} | |