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 |
| 官方網址 | 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'"
} | |