Improved Managebac

A Vue Browser Extension

What is Improved Managebac?

Improved Managebac is a Chrome extension developed by ceciampa, and its main feature is "A Vue Browser Extension".

Extension Screenshots

screenshot
screenshot
screenshot

Download Improved Managebac Extension CRX File

Download Improved Managebac extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Improved Managebac Improved Managebac
ID eghkbplibfjmodhhpfeiefaggggfjcoj
Official URL https://chromewebstore.google.com/detail/improved-managebac/eghkbplibfjmodhhpfeiefaggggfjcoj
Description A Vue Browser Extension
File Size 800 KB
Installation Count 608
Current Version 2.6.0
Last Updated 2021-04-13
Publish Date 2020-06-07
Rating 4.75/5 Total 4 Ratings
Developer ceciampa
Email [email protected]
Payment Type free
Extension Website https://github.com/CharlesC03/Improved-Managebac
Supported Languages 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'"
}