Compass Dark Theme
Turn your compass school portal into a simpler and sleek looking design!
Compass Dark Themeとは何ですか?
Compass Dark ThemeはValeriy Djulaiによって開発されたChromeの拡張機能で、その主な機能は「Turn your compass school portal into a simpler and sleek looking design!」です。
拡張機能のスクリーンショット
Compass Dark Theme拡張機能のCRXファイルをダウンロード
Compass Dark Theme拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Are you tired of the classic, boring and ugly compass interface? Well here's a nice extension to spice things up. Introducing dark theme for compass, a visual overhaul for the educational website Compass. Expect more themes in the near future.
拡張機能の基本情報
名前 | |
ID | djgcpgfednpfkdhoodgiokdelmefkine |
公式URL | https://chromewebstore.google.com/detail/compass-dark-theme/djgcpgfednpfkdhoodgiokdelmefkine |
説明 | Turn your compass school portal into a simpler and sleek looking design! |
ファイルサイズ | 303 KB |
インストール数 | 206 |
現在のバージョン | 1.2 |
最終更新日 | 2019-05-13 |
公開日 | 2019-05-13 |
評価 | 4.38/5 合計 13 レビュー |
開発者 | Valeriy Djulai |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | http://mortalis.me |
ヘルプページのURL | http://mortalis.me |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Compass Dark Theme", "version": "1.2", "description": "Turn your compass school portal into a simpler and sleek looking design!", "manifest_version": 2, "browser_action": { "default_popup": "options.html" }, "permissions": [ "storage" ], "content_scripts": [ { "matches": [ "https:\/\/*.compass.education\/*" ], "run_at": "document_start", "js": [ "inject.js" ] }, { "matches": [ "https:\/\/*.compass.education\/*" ], "js": [ "site.js" ] } ], "icons": { "128": "logo.png" }, "web_accessible_resources": [ "images\/*.png", "styles\/*.css", "options.js" ] } |