Smarter Smartschool

Makes Smartschool smarter.

Τι είναι το Smarter Smartschool;

Το Smarter Smartschool είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον EbbDrop, και η κύρια λειτουργία του είναι "Makes Smartschool smarter.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Smarter Smartschool

Λήψη αρχείων επέκτασης Smarter Smartschool σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Modifies Smartschool to get extra functionality.
- Add back grid view to "Resultaten"
- Calculate total score

This extension is opensource: https://github.com/EbbDrop/SmarterSmartchool

Change log:
5.8
- Add compatibility with Smartschool++ (https://chromewebstore.google.com/detail/smartschool++/bdhficnphioomdjhdfbhdepjgggekodf)

5.7
- Add total row (by Iliannnn)

5.6
- Fixed styling to not interfere with Smartschools own table

5.5
- Added tooltips when hovering over a result in grid view
- Code cleanup

5.4:
- Fixed table overflowing container
- Added disclaimer to table

5.3:
- Fixed period buttons not working
- Auto open latest period
- Improve button style

5.2:
- Fixed grid not loading when non standard evaluations are given

5.1:
- Added a grid view with totals to Resultaten

5.0:
- Removed custom images
- Made extension open source

4.4:
- Fixed theme in "taken" and player selector for messages.

4.3:
- Changed name to 'Smarter Smart School'.
- Fixed total grades not apearing when clicking on a notification.
- Fixed typo in image explanation

4.2:
- Added totals to list view
- Fixed themes for password reset

4.1:
- Changed defoult dark theme
- Fixed theme for new message dialog
- Fixed totals apearing twice

4.0:
- Aded custum syles: Set your own background and forground color.
- Fixed notifcatino theme
- Code cleanup


Special thanks to:
- Wander Steenhoudt (for lending me their smartschool account to test)                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Smarter Smartschool Smarter Smartschool
ID lbpdknjafmmnemenflppkofaakldbfom
Επίσημο URL https://chromewebstore.google.com/detail/smarter-smartschool/lbpdknjafmmnemenflppkofaakldbfom
Περιγραφή Makes Smartschool smarter.
Μέγεθος Αρχείου 248 KB
Αριθμός Εγκαταστάσεων 153,989
Τρέχουσα Έκδοση 5.8
Τελευταία Ενημέρωση 2023-12-16
Ημερομηνία Δημοσίευσης 2020-03-16
Αξιολόγηση 4.50/5 Συνολικά 28 Αξιολογήσεις
Προγραμματιστής EbbDrop
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες nl
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Smarter Smartschool",
    "short_name": "SmarterSS",
    "version": "5.8",
    "description": "Makes Smartschool smarter.",
    "permissions": [
        "activeTab",
        "storage",
        "declarativeContent"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "action": {
        "default_popup": "options.html"
    },
    "icons": {
        "16": "static\/img\/icon_16.png",
        "48": "static\/img\/icon_48.png",
        "128": "static\/img\/icon_128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.smartschool.be\/Grades*"
            ],
            "js": [
                "static\/js\/jquery-3.4.1.min.js",
                "BetterGrades.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "https:\/\/*.smartschool.be\/results*"
            ],
            "js": [
                "static\/js\/jquery-3.4.1.min.js",
                "BetterResults.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "https:\/\/*.smartschool.be\/*"
            ],
            "js": [
                "BetterStyle.js"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "static\/img\/icon_128.png"
            ],
            "matches": [
                "https:\/\/*.smartschool.be\/*"
            ]
        }
    ],
    "manifest_version": 3
}