BC Grade Calculator

Tells you the % grade and % completion of a class in Broward College's D2L website.

BC Grade Calculator란 무엇입니까?

BC Grade Calculator은(는) William Chiang & Salvador Aleguas에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Tells you the % grade and % completion of a class in Broward College's D2L website."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

BC Grade Calculator 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        IMPORTANT: This extension only works when you are in the grades tab for your D2L class. Furthermore, any grade with a 0 will be considered as if the assignment has not been completed. 

Update: Zeroes are now considered as uncompleted assignments.

Broward college's D2L website is extensively used by many courses, online and offline. A glaring problem it has, however, it does not display your current grade in the class or how done with the class you are. This extension will solve both of those problems in a way where it won't be in your face. It will display a banner on the grades website with your current grade in the class as well as a more detailed breakdown in the extension's popup menu. It simply just works. 

We are not liable or responsible for any damages that may occur from the use of the extension. It is possible that D2L could update their system and this extension will break.

GitHub: https://github.com/saleguas/BC_GradeCalculator                    

확장 프로그램 기본 정보

이름 BC Grade Calculator BC Grade Calculator
ID indmmjbhnaffjfchjohdjomfefjbakef
공식 URL https://chromewebstore.google.com/detail/bc-grade-calculator/indmmjbhnaffjfchjohdjomfefjbakef
설명 Tells you the % grade and % completion of a class in Broward College's D2L website.
파일 크기 89.87 KB
설치 횟수 98
현재 버전 1.0.1
최근 업데이트 2019-05-23
출시 날짜 2019-05-22
평점 5.00/5 총 5 개의 평점
개발자 William Chiang & Salvador Aleguas
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://saleguas.github.io/BCGRADECALCWEB/
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "BC Grade Calculator",
    "version": "1.0.1",
    "description": "Tells you the % grade and % completion of a class in Broward College's D2L website.",
    "homepage_url": "https:\/\/github.com\/saleguas\/BC_GradeCalculator",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/bconline.broward.edu\/d2l\/lms\/grades\/my_grades*"
            ],
            "js": [
                "assets\/js\/jquery-3.4.1.min.js",
                "assets\/js\/bootstrap.min.js",
                "assets\/js\/calculate.js"
            ],
            "css": [
                "assets\/css\/bootstrapcolors.css",
                "assets\/css\/bootstrap.min.css"
            ]
        }
    ],
    "browser_action": {
        "default_popup": "popup.html",
        "default_title": "Click here to see the grade report.",
        "default_icon": "assets\/icons\/book.png"
    },
    "icons": {
        "16": "assets\/icons\/book.png",
        "48": "assets\/icons\/book2.png",
        "128": "assets\/icons\/book3.png"
    },
    "permissions": [
        "storage",
        "tabs"
    ]
}