Smartschool Plus
Add extra features to Smartschool
Qu'est-ce que Smartschool Plus ?
Smartschool Plus est une extension Chrome développée par thomaspeetersdev, et sa fonction principale est "Add extra features to Smartschool".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Smartschool Plus
Téléchargez les fichiers d'extension Smartschool Plus au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
- 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.
Informations de Base sur l'Extension
Nom | Smartschool Plus |
ID | glcnmmnhadkmgikpgciabebjmkocalga |
URL Officiel | https://chromewebstore.google.com/detail/smartschool-plus/glcnmmnhadkmgikpgciabebjmkocalga |
Description | Add extra features to Smartschool |
Taille du Fichier | 622 KB |
Nombre d'Installations | 707 |
Version Actuelle | 2.0 |
Dernière Mise à Jour | 2023-08-26 |
Date de Publication | 2023-05-26 |
Évaluation | 5.00/5 Total 2 Évaluations |
Développeur | thomaspeetersdev |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/thomaspeeters/smartschool-plus |
Langues Prises en Charge | 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" ] } |