Attendance Calulator

Allows VIT students to calculate attendance on the login itself

Co to jest Attendance Calulator?

Attendance Calulator to rozszerzenie Chrome opracowane przez lalit.umbarkar9, a jego główną funkcją jest „Allows VIT students to calculate attendance on the login itself”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Attendance Calulator

Pobierz pliki rozszerzeń Attendance Calulator w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        Having to look for a calculator to see how many classes can be bunked.
Use this extension to calculate attendance on the login itself.                    

Podstawowe informacje o rozszerzeniu

Nazwa Attendance Calulator Attendance Calulator
ID kbjdiknnkobjmhlamhegcdjddinkfaia
Oficjalny URL https://chromewebstore.google.com/detail/attendance-calulator/kbjdiknnkobjmhlamhegcdjddinkfaia
Opis Allows VIT students to calculate attendance on the login itself
Rozmiar pliku 4.29 KB
Liczba instalacji 584
Aktualna Wersja 1
Ostatnia Aktualizacja 2016-06-17
Data Publikacji 2016-06-17
Ocena 3.33/5 Łącznie 3 Oceny
Deweloper lalit.umbarkar9
Typ Płatności free
Obsługiwane Języki en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Attendance Calulator",
    "version": "1",
    "author": "Suman Das",
    "description": "Allows VIT students to calculate attendance on the login itself",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/vtop.vit.ac.in\/student\/attn_report.asp?sem=*&fmdt=*&todt=*"
            ],
            "all_frames": true,
            "js": [
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_popup": "index.html"
    }
}