Librus Average

This extension shows grade averages hidden by Librus Synergia

Librus Averageคืออะไร?

Librus Average เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Krzysztof Zdulski และคุณลักษณะหลักของมันคือ "This extension shows grade averages hidden by Librus Synergia"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Librus Average

ดาวน์โหลดไฟล์ส่วนขยาย Librus Average ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        NEW: Clear the clutter! Now you can hide subjects that you do not have any grades from. Just enable it in the options menu in the browser toolbar.

This extension allows you to show the average on Librus Synergia's website. Some schools decide to hide the average from you, that's when this extension comes in. It is highly customizable when it comes to calculations. The extension is fully open source and you can check it out on GitHub: https://github.com/librus-stats/librus-average. 

Also available for Firefox: https://addons.mozilla.org/en-US/firefox/addon/librus-average/
And Opera: https://addons.opera.com/en/extensions/details/librus-average/

DISCLAIMER: This extension uses Google Analytics to log simple events (preference changes and extension load). None of your personal data (grades or average) is being logged or used in manners other that displaying it.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Librus Average Librus Average
ID meankokoepgpipcnhcckojgcnkpnagng
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/librus-average/meankokoepgpipcnhcckojgcnkpnagng
คำอธิบาย This extension shows grade averages hidden by Librus Synergia
ขนาดไฟล์ 871 KB
จำนวนการติดตั้ง 30,646
เวอร์ชันปัจจุบัน 2.8
อัปเดตครั้งล่าสุด 2023-01-10
วันที่เผยแพร่ 2019-06-10
คะแนน 4.70/5 รวมทั้งหมด 53 คะแนน
ผู้พัฒนา Krzysztof Zdulski
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/librus-stats/librus-average
URL หน้าช่วยเหลือ https://github.com/librus-stats/librus-average/issues
ภาษาที่รองรับ en,pl
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_app_name__",
    "description": "__MSG_app_description__",
    "version": "2.8",
    "version_name": "2.8",
    "default_locale": "en",
    "icons": {
        "16": "icons\/icon16.png",
        "32": "icons\/icon32.png",
        "48": "icons\/icon48.png",
        "64": "icons\/icon64.png",
        "128": "icons\/icon128.png"
    },
    "browser_action": {
        "default_popup": "html\/options.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/synergia.librus.pl\/przegladaj_oceny\/uczen"
            ],
            "js": [
                "js\/jquery-3.3.1.min.js",
                "js\/support.js",
                "js\/content_script.js"
            ]
        }
    ],
    "permissions": [
        "storage",
        "https:\/\/synergia.librus.pl\/",
        "https:\/\/fonts.googleapis.com\/"
    ],
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com https:\/\/www.google-analytics.com; object-src 'self'",
    "background": {
        "scripts": [
            "\/js\/support.js",
            "\/js\/background_analytics_manager.js"
        ],
        "persistent": false
    },
    "applications": {
        "gecko": {
            "id": "[email protected]"
        }
    }
}