Montville GPA Calculator Schoology
Calculates Montville High School GPAs for Schoolog
What is Montville GPA Calculator Schoology?
Montville GPA Calculator Schoology is a Chrome extension developed by Pepi Martinez, and its main feature is "Calculates Montville High School GPAs for Schoolog".
Extension Screenshots
Download Montville GPA Calculator Schoology Extension CRX File
Download Montville GPA Calculator Schoology 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
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.
Extension Basic Information
Name | Montville GPA Calculator Schoology |
ID | hgpjhobkibfhndplipbmbeminaeacabm |
Official URL | https://chromewebstore.google.com/detail/montville-gpa-calculator/hgpjhobkibfhndplipbmbeminaeacabm |
Description | Calculates Montville High School GPAs for Schoolog |
File Size | 93.34 KB |
Installation Count | 66 |
Current Version | 1.1 |
Last Updated | 2019-11-12 |
Publish Date | 2019-11-12 |
Developer | Pepi Martinez |
[email protected] | |
Payment Type | free |
Supported Languages | 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 } } |