Librus Average

This extension shows grade averages hidden by Librus Synergia

Librus Average란 무엇입니까?

Librus Average은(는) Krzysztof Zdulski에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension shows grade averages hidden by Librus Synergia"입니다.

확장 프로그램 스크린샷

screenshot

Librus Average 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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