Montville GPA Calculator Schoology

Calculates Montville High School GPAs for Schoolog

Vad är Montville GPA Calculator Schoology?

Montville GPA Calculator Schoology är en Chrome-tillägg utvecklad av Pepi Martinez, och dess huvudfunktion är "Calculates Montville High School GPAs for Schoolog".

Tilläggsskärmbilder

screenshot

Ladda ner Montville GPA Calculator Schoology-förlängningens CRX-fil

Ladda ner Montville GPA Calculator Schoology-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn Montville GPA Calculator Schoology Montville GPA Calculator Schoology
ID hgpjhobkibfhndplipbmbeminaeacabm
Officiell webbadress https://chromewebstore.google.com/detail/montville-gpa-calculator/hgpjhobkibfhndplipbmbeminaeacabm
Beskrivning Calculates Montville High School GPAs for Schoolog
Filstorlek 93.34 KB
Antal Installationer 66
Aktuell Version 1.1
Senast Uppdaterad 2019-11-12
Publiceringsdatum 2019-11-12
Utvecklare Pepi Martinez
E-post [email protected]
Betalningssätt free
Stödda Språk 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
    }
}