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.
扩展基本信息
名称 | Smartschool Plus |
ID | glcnmmnhadkmgikpgciabebjmkocalga |
官方URL | 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" ] } |