Improved Managebac
A Vue Browser Extension
Cos'è Improved Managebac?
Improved Managebac è un'estensione di Chrome sviluppata da ceciampa, e la sua funzione principale è "A Vue Browser Extension".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Improved Managebac
Scarica i file di estensione Improved Managebac in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | Improved Managebac |
ID | eghkbplibfjmodhhpfeiefaggggfjcoj |
URL Ufficiale | https://chromewebstore.google.com/detail/improved-managebac/eghkbplibfjmodhhpfeiefaggggfjcoj |
Descrizione | A Vue Browser Extension |
Dimensione del File | 800 KB |
Conteggio Installazioni | 608 |
Versione Corrente | 2.6.0 |
Ultimo Aggiornamento | 2021-04-13 |
Data di Pubblicazione | 2020-06-07 |
Valutazione | 4.75/5 Totale 4 Valutazioni |
Sviluppatore | ceciampa |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/CharlesC03/Improved-Managebac |
Lingue Supportate | 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'" } |