Montville GPA Calculator Schoology

Calculates Montville High School GPAs for Schoolog

Hvad er Montville GPA Calculator Schoology?

Montville GPA Calculator Schoology er en Chrome-udvidelse udviklet af Pepi Martinez, og dens hovedfunktion er "Calculates Montville High School GPAs for Schoolog".

Udvidelsesskærmbilleder

screenshot

Download Montville GPA Calculator Schoology-udvidelses-CRX-fil

Download Montville GPA Calculator Schoology-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn Montville GPA Calculator Schoology Montville GPA Calculator Schoology
ID hgpjhobkibfhndplipbmbeminaeacabm
Officiel URL https://chromewebstore.google.com/detail/montville-gpa-calculator/hgpjhobkibfhndplipbmbeminaeacabm
Beskrivelse Calculates Montville High School GPAs for Schoolog
Filstørrelse 93.34 KB
Antal Installationer 66
Nuværende Version 1.1
Senest Opdateret 2019-11-12
Udgivelsesdato 2019-11-12
Udvikler Pepi Martinez
E-mail [email protected]
Betalingsmetode free
Understøttede Sprog 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
    }
}