Smartschool Plus
Add extra features to Smartschool
什麼是Smartschool Plus?
Smartschool Plus是由thomaspeetersdev開發的Chrome擴展程式,該擴展的主要功能是“Add extra features to Smartschool”。
擴展截圖
下載Smartschool Plus擴展crx文件
下載Smartschool Plus擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
- 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. 擴展基本資訊
| 名稱 | |
| ID | glcnmmnhadkmgikpgciabebjmkocalga |
| 官方網址 | https://chromewebstore.google.com/detail/smartschool-plus/glcnmmnhadkmgikpgciabebjmkocalga |
| 簡介 | Add extra features to Smartschool |
| 檔案大小 | 622 KB |
| 安裝次數 | 707 |
| 目前版本 | 2.0 |
| 更新時間 | 2023-08-26 |
| 上架時間 | 2023-05-26 |
| 評分 | 5.00/5 共 2 次評分 |
| 開發者 | thomaspeetersdev |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 擴展官網 | https://github.com/thomaspeeters/smartschool-plus |
| 支援的語言 | 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"
]
} | |