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 |
| 官方網址 | 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 |
| 電子郵箱 | [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'"
} | |