Smartschool Plus

Add extra features to Smartschool

ما هو Smartschool Plus؟

Smartschool Plus هو إضافة Chrome تم تطويرها بواسطة thomaspeetersdev، والميزة الرئيسية لها هي "Add extra features to Smartschool".

لقطات شاشة التمديد

screenshot
screenshot

تحميل ملف CRX للإضافة Smartschool Plus

قم بتنزيل ملفات الامتداد Smartschool Plus بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        - 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 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"
    ]
}