Improved Managebac
A Vue Browser Extension
Wat is Improved Managebac?
Improved Managebac is een Chrome-extensie ontwikkeld door ceciampa, en de belangrijkste functie is "A Vue Browser Extension".
Extensie Screenshots
Download het CRX-bestand van de extensie Improved Managebac
Download Improved Managebac-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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
Basisinformatie over de Extensie
Naam | Improved Managebac |
ID | eghkbplibfjmodhhpfeiefaggggfjcoj |
Officiële URL | https://chromewebstore.google.com/detail/improved-managebac/eghkbplibfjmodhhpfeiefaggggfjcoj |
Beschrijving | A Vue Browser Extension |
Bestandsgrootte | 800 KB |
Aantal Installaties | 608 |
Huidige Versie | 2.6.0 |
Laatst Bijgewerkt | 2021-04-13 |
Publicatiedatum | 2020-06-07 |
Beoordeling | 4.75/5 Totaal 4 Beoordelingen |
Ontwikkelaar | ceciampa |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/CharlesC03/Improved-Managebac |
Ondersteunde Talen | 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'" } |