Improved Managebac
A Vue Browser Extension
Improved Managebacとは何ですか?
Improved Managebacはceciampaによって開発されたChromeの拡張機能で、その主な機能は「A Vue Browser Extension」です。
拡張機能のスクリーンショット
Improved Managebac拡張機能のCRXファイルをダウンロード
Improved Managebac拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Update
- New UI & Design
Improved Managebac is an open-source extension can do many things. First it averages your grades for you. It has a better graph. It also has a built in dark mode for Managebac. And I am adding new features as often as I can.
Open-Source
https://github.com/CharlesC03/Improved-Managebac 拡張機能の基本情報
| 名前 | |
| ID | eghkbplibfjmodhhpfeiefaggggfjcoj |
| 公式URL | https://chromewebstore.google.com/detail/improved-managebac/eghkbplibfjmodhhpfeiefaggggfjcoj |
| 説明 | A Vue Browser Extension |
| ファイルサイズ | 800 KB |
| インストール数 | 608 |
| 現在のバージョン | 2.6.0 |
| 最終更新日 | 2021-04-13 |
| 公開日 | 2020-06-07 |
| 評価 | 4.75/5 合計 4 レビュー |
| 開発者 | ceciampa |
| Eメール | [email protected] |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://github.com/CharlesC03/Improved-Managebac |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Improved Managebac",
"version": "2.6.0",
"description": "A Vue Browser Extension",
"default_locale": "en",
"permissions": [
"*:\/\/*.managebac.com\/student\/*",
"storage",
"tabs"
],
"icons": {
"128": "icons\/mb.png"
},
"background": {
"scripts": [
"js\/background.js"
],
"persistent": false
},
"content_scripts": [
{
"matches": [
"*:\/\/*.managebac.com\/student\/*"
],
"run_at": "document_start",
"js": [
"js\/darkMode.js"
]
},
{
"matches": [
"https:\/\/*.managebac.com\/student\/*"
],
"run_at": "document_idle",
"js": [
"js\/content-script.js"
]
}
],
"browser_action": {
"default_popup": "popup.html",
"default_title": "Improved Managebac",
"default_icon": {
"128": "icons\/mb.png"
}
},
"options_ui": {
"page": "options.html",
"open_in_tab": true
},
"content_security_policy": "script-src 'self' ; object-src 'self'"
} | |