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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Improves the overall user exipierence and user interaction with schoology
확장 프로그램 기본 정보
이름 | Schoology Improvements |
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'" } |