CheckSchoology Lite

CheckSchoology Lite brings features from your favorite PCR extension into Schoology.

Vad är CheckSchoology Lite?

CheckSchoology Lite är en Chrome-tillägg utvecklad av Bowen Yin, och dess huvudfunktion är "CheckSchoology Lite brings features from your favorite PCR extension into Schoology.".

Tilläggsskärmbilder

screenshot

Ladda ner CheckSchoology Lite-förlängningens CRX-fil

Ladda ner CheckSchoology Lite-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

                        Visit your Schoology calendar page to get started.

Summary of features:
• Mark an assignment as complete by hovering over it and clicking the checkmark.
• Change course colors by clicking on "All Calendars" at the top.
• Choose from new, updated colors.
• Completed assignments are synced across all signed-in Chrome devices.

CheckSchoology Lite is open source. View the source code at https://github.com/BowenYin/checkschoology-lite.                    

Grundläggande Information om Tillägg

Namn CheckSchoology Lite CheckSchoology Lite
ID pggolmnkgkclmglodmckfdckmjglpjbm
Officiell webbadress https://chromewebstore.google.com/detail/checkschoology-lite/pggolmnkgkclmglodmckfdckmjglpjbm
Beskrivning CheckSchoology Lite brings features from your favorite PCR extension into Schoology.
Filstorlek 18.93 KB
Antal Installationer 306
Aktuell Version 1.1.2
Senast Uppdaterad 2020-09-29
Publiceringsdatum 2020-03-19
Betyg 3.67/5 Totalt 3 Betyg
Utvecklare Bowen Yin
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/BowenYin/checkschoology-lite
Hjälpsida URL https://github.com/BowenYin/checkschoology-lite/issues
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "CheckSchoology Lite",
    "version": "1.1.2",
    "description": "CheckSchoology Lite brings features from your favorite PCR extension into Schoology.",
    "manifest_version": 2,
    "icons": {
        "128": "icons\/icon128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "css": [
                "content.css"
            ],
            "matches": [
                "*:\/\/schoology.harker.org\/calendar\/*",
                "*:\/\/athena.harker.org\/calendar\/*",
                "*:\/\/app.schoology.com\/calendar\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "browser_action": {
        "default_icon": {
            "32": "icons\/icon32.png"
        }
    },
    "permissions": [
        "storage",
        "webRequest",
        "*:\/\/schoology.harker.org\/calendar\/*",
        "*:\/\/athena.harker.org\/calendar\/*",
        "*:\/\/app.schoology.com\/calendar\/*"
    ],
    "short_name": "CheckSchoology"
}