BC Grade Calculator

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

BC Grade Calculatorคืออะไร?

BC Grade Calculator เป็นส่วนขยายของ Chrome ที่พัฒนาโดย William Chiang & Salvador Aleguas และคุณลักษณะหลักของมันคือ "Tells you the % grade and % completion of a class in Broward College's D2L website."

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

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย BC Grade Calculator

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

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

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