Schoology Pro

Meant to enhance the user experience of the educational platform Schoology

Schoology Pro क्या है?

Schoology Pro Sooraj Gupta द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Meant to enhance the user experience of the educational platform Schoology"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Schoology Pro एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        A Chrome Extension designed to enhance the Schoology educational platform. This extension is still in its developing stages and many more features are yet to come. 

Privacy Policy: 
-  All data is stored locally on the user's computer. No data about the user is collected or sent anywhere.
-  Data stored locally: school subdomain (i.e. "fuhsd", "mvla", etc),  overall grade percentages for each class and theme selection/customization options, course names, checked off assignments, crossed off overdue assignments.


CURRENT FEATURES:

- Check off Assignments in the Upcoming List
- Remove assignments from the Overdue section (especially for assignments which cannot be submitted but have a due date) 
- View grade (letter and percentage) in the course name in the grades page
- Change semester to show grades for that semester on the course name in the grades page
- Color coded grades ( eg. A is green and F is red ). 
- Change weightage and add categories in weighted courses. 
- Extension popup includes quick links to Schoology Home and Grades.
- Compact option for grades
- Can hide irrelevant courses from the grades section.
- Assignment automatically gets checked after submission
- Can hide events in the upcoming lists to remove clutter
- Motivational Messages


UPCOMING FEATURES:

- Add/Remove assignments in grades page
- Edit assignment grades.
- Dark Mode
- Save Zoom meeting links into the extension popup to have easy access to them
- Many more still to come!


Version History:

1.0.0:
- Check off Assignments in the Upcoming List
- Remove assignments from the Overdue section (especially for assignments which cannot be submitted but have a due date) 
- View grade (letter and percentage) in the course name in the grades page
- Change semester to show grades for that semester on the course name in the grades page
- Color coded grades ( eg. A is green and F is red ). 
- Change weightage and add categories in weighted courses. 
- Extension popup includes quick links to Schoology Home and Grades.
- Compact option for grades
- Can hide irrelevant courses from the grades section.
- Assignment automatically gets checked after submission
- Can hide events in the upcoming lists to remove clutter
- Motivational Messages

DISCLAIMER
Schoology Pro is not affiliated with Schoology Inc. or the Fremont Union High School District. Schoology, the SCHOOLOGY® wordmark, and the S logo are registered and unregistered trademarks of Schoology, Inc. in the United States. All product names, logos, and brands are property of their respective owners.


If you have any questions, issues, or suggestions, please email [email protected]                    

एक्सटेंशन की मूल जानकारी

नाम Schoology Pro Schoology Pro
ID kchkchnllhfghhgbcfhefibimmoajfgb
आधिकारिक URL https://chromewebstore.google.com/detail/schoology-pro/kchkchnllhfghhgbcfhefibimmoajfgb
विवरण Meant to enhance the user experience of the educational platform Schoology
फ़ाइल का आकार 29.89 KB
स्थापना संख्या 612
वर्तमान संस्करण 1.0.0
अंतिम अपडेट 2021-04-14
प्रकाशन तिथि 2021-04-14
रेटिंग 5.00/5 कुल 8 रेटिंग्स
डेवलपर Sooraj Gupta
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Schoology Pro",
    "description": "Meant to enhance the user experience of the educational platform Schoology",
    "version": "1.0.0",
    "manifest_version": 2,
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.schoology.com\/grades\/*"
            ],
            "js": [
                "rungrades.js"
            ],
            "css": [
                "soorajschromeextension.css"
            ]
        },
        {
            "matches": [
                "*:\/\/*.schoology.com\/home*",
                "*:\/\/*.schoology.com\/course\/*"
            ],
            "js": [
                "runhome.js"
            ],
            "css": [
                "soorajschromeextension.css"
            ]
        },
        {
            "matches": [
                "*:\/\/*.schoology.com\/assignment\/*"
            ],
            "js": [
                "runassignments.js"
            ],
            "css": [
                "soorajschromeextension.css"
            ]
        }
    ],
    "background": {
        "matches": [
            "*:\/\/*.schoology.com\/*"
        ],
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "storage",
        "*:\/\/*.schoology.com\/*"
    ],
    "icons": {
        "16": "imgs\/logo16.png",
        "48": "imgs\/logo48.png",
        "128": "imgs\/logo128.png"
    },
    "browser_action": {
        "default_popup": "popup.html",
        "default_title": "Test"
    }
}