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 | 
| 电子邮箱 | [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'"
}  |  |