Smartschool Plus
Add extra features to Smartschool
Was ist Smartschool Plus?
Smartschool Plus ist eine Chrome-Erweiterung, die von thomaspeetersdev entwickelt wurde, und ihr Hauptmerkmal ist "Add extra features to Smartschool".
Erweiterungsscreenshots
Smartschool Plus-Erweiterungs-CRX-Datei herunterladen
Laden Sie Smartschool Plus-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
- Adds a "Download original" button under the main photo when viewing a photo gallery. Use this button to download the main photo in its original quality.
- Adds a "Make album zip" button under every photo album, allowing you to download an entire album as a zip file. All photo's in this zip will be original quality. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | glcnmmnhadkmgikpgciabebjmkocalga |
| Offizielle URL | https://chromewebstore.google.com/detail/smartschool-plus/glcnmmnhadkmgikpgciabebjmkocalga |
| Beschreibung | Add extra features to Smartschool |
| Dateigröße | 622 KB |
| Installationsanzahl | 707 |
| Aktuelle Version | 2.0 |
| Letztes Update | 2023-08-26 |
| Veröffentlichungsdatum | 2023-05-26 |
| Bewertung | 5.00/5 Insgesamt 2 Bewertungen |
| Entwickler | thomaspeetersdev |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | https://github.com/thomaspeeters/smartschool-plus |
| Unterstützte Sprachen | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Smartschool Plus",
"description": "Add extra features to Smartschool",
"version": "2.0",
"manifest_version": 3,
"content_scripts": [
{
"matches": [
"https:\/\/*.smartschool.be\/*"
],
"js": [
"js\/jquery-3.7.0.min.js",
"js\/fontawesome-all.min.js",
"js\/zip-full.min.js",
"js\/content.js"
],
"css": [
"css\/style.css"
]
}
],
"background": {
"service_worker": "js\/service-worker.js"
},
"host_permissions": [
"https:\/\/*.smartschool.be\/*"
],
"icons": {
"16": "icon\/icon-16.png",
"32": "icon\/icon-32.png",
"48": "icon\/icon-48.png",
"128": "icon\/icon-128.png"
},
"permissions": [
"offscreen"
]
} | |