Smartschool Plus
Add extra features to Smartschool
Wat is Smartschool Plus?
Smartschool Plus is een Chrome-extensie ontwikkeld door thomaspeetersdev, en de belangrijkste functie is "Add extra features to Smartschool".
Extensie Screenshots
Download het CRX-bestand van de extensie Smartschool Plus
Download Smartschool Plus-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
- 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.
Basisinformatie over de Extensie
Naam | Smartschool Plus |
ID | glcnmmnhadkmgikpgciabebjmkocalga |
Officiële URL | https://chromewebstore.google.com/detail/smartschool-plus/glcnmmnhadkmgikpgciabebjmkocalga |
Beschrijving | Add extra features to Smartschool |
Bestandsgrootte | 622 KB |
Aantal Installaties | 707 |
Huidige Versie | 2.0 |
Laatst Bijgewerkt | 2023-08-26 |
Publicatiedatum | 2023-05-26 |
Beoordeling | 5.00/5 Totaal 2 Beoordelingen |
Ontwikkelaar | thomaspeetersdev |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/thomaspeeters/smartschool-plus |
Ondersteunde Talen | 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" ] } |