Montville GPA Calculator Schoology
Calculates Montville High School GPAs for Schoolog
Wat is Montville GPA Calculator Schoology?
Montville GPA Calculator Schoology is een Chrome-extensie ontwikkeld door Pepi Martinez, en de belangrijkste functie is "Calculates Montville High School GPAs for Schoolog".
Extensie Screenshots
Download het CRX-bestand van de extensie Montville GPA Calculator Schoology
Download Montville GPA Calculator Schoology-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
This tool calculates the GPA for Montville Township High School students using the Schoology grade book. When you click on the extension in the address bar select options to enable or disable dark mode.
Basisinformatie over de Extensie
Naam | Montville GPA Calculator Schoology |
ID | hgpjhobkibfhndplipbmbeminaeacabm |
Officiële URL | https://chromewebstore.google.com/detail/montville-gpa-calculator/hgpjhobkibfhndplipbmbeminaeacabm |
Beschrijving | Calculates Montville High School GPAs for Schoolog |
Bestandsgrootte | 93.34 KB |
Aantal Installaties | 66 |
Huidige Versie | 1.1 |
Laatst Bijgewerkt | 2019-11-12 |
Publicatiedatum | 2019-11-12 |
Ontwikkelaar | Pepi Martinez |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Montville GPA Calculator Schoology", "description": "Calculates Montville High School GPAs for Schoolog", "version": "1.1", "author": "Pepi Martinez", "background": { "scripts": [ ".\/src\/lib\/jquery.min.js", ".\/src\/background.js" ], "persistent": false }, "permissions": [ "activeTab", "storage", "declarativeContent" ], "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'", "content_scripts": [ { "matches": [ "https:\/\/schoology.montville.net\/grades\/grades" ], "css": [ ".\/src\/css\/main.css" ], "js": [ ".\/src\/lib\/jquery.min.js", ".\/src\/Helpers.js", ".\/src\/content_script.js" ], "run_at": "document_end" } ], "page_action": { "default_popup": ".\/src\/popup\/popup.html", "default_icon": ".\/src\/img\/icon.png", "default_title": "Mont GPA Calc Schoology" }, "icons": { "32": ".\/src\/img\/icon.png" }, "options_ui": { "page": ".\/src\/options\/options.html", "open_in_tab": false } } |