Smartschool Plus
Add extra features to Smartschool
Co to jest Smartschool Plus?
Smartschool Plus to rozszerzenie Chrome opracowane przez thomaspeetersdev, a jego główną funkcją jest „Add extra features to Smartschool”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Smartschool Plus
Pobierz pliki rozszerzeń Smartschool Plus w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
- 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.
Podstawowe informacje o rozszerzeniu
Nazwa | Smartschool Plus |
ID | glcnmmnhadkmgikpgciabebjmkocalga |
Oficjalny URL | https://chromewebstore.google.com/detail/smartschool-plus/glcnmmnhadkmgikpgciabebjmkocalga |
Opis | Add extra features to Smartschool |
Rozmiar pliku | 622 KB |
Liczba instalacji | 707 |
Aktualna Wersja | 2.0 |
Ostatnia Aktualizacja | 2023-08-26 |
Data Publikacji | 2023-05-26 |
Ocena | 5.00/5 Łącznie 2 Oceny |
Deweloper | thomaspeetersdev |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/thomaspeeters/smartschool-plus |
Obsługiwane Języki | 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" ] } |