IITBh CGPA

Calculate CGPA directly from AIMS Portal. Click on the extension logo when on AIMS portal's courses page to see your CGPA.

Co to jest IITBh CGPA?

IITBh CGPA to rozszerzenie Chrome opracowane przez Kumar Shivendu, a jego główną funkcją jest „Calculate CGPA directly from AIMS Portal. Click on the extension logo when on AIMS portal's courses page to see your CGPA.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia IITBh CGPA

Pobierz pliki rozszerzeń IITBh CGPA 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

                        Calculate CGPA directly from IIT Bhilai AIMS Portal.                    

Podstawowe informacje o rozszerzeniu

Nazwa IITBh CGPA IITBh CGPA
ID pidnkhnegljcpjeacmfgbjilbhablfkb
Oficjalny URL https://chromewebstore.google.com/detail/iitbh-cgpa/pidnkhnegljcpjeacmfgbjilbhablfkb
Opis Calculate CGPA directly from AIMS Portal. Click on the extension logo when on AIMS portal's courses page to see your CGPA.
Rozmiar pliku 38.76 KB
Liczba instalacji 282
Aktualna Wersja 2.3
Ostatnia Aktualizacja 2021-05-08
Data Publikacji 2021-03-29
Ocena 4.90/5 Łącznie 10 Oceny
Deweloper Kumar Shivendu
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/supercoww/iitbh-cgpa
Adres URL Strony Pomocy https://github.com/supercoww/iitbh-cgpa
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "IITBh CGPA",
    "version": "2.3",
    "description": "Calculate CGPA directly from AIMS Portal. Click on the extension logo when on AIMS portal's courses page to see your CGPA.",
    "permissions": [
        "activeTab",
        "declarativeContent"
    ],
    "page_action": {
        "default_popup": "popup.html",
        "show_matches": [
            "*:\/\/aimsportal.iitbhilai.ac.in\/iitbhAims\/courseReg\/myCrsHistoryPage*"
        ],
        "default_icon": {
            "16": "images\/16x16.png",
            "32": "images\/32x32.png",
            "128": "images\/128x128.png"
        },
        "default_title": "CGPA"
    },
    "background": {
        "scripts": [
            "browser-polyfill.js",
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/aimsportal.iitbhilai.ac.in\/iitbhAims\/courseReg\/myCrsHistoryPage*"
            ],
            "js": [
                "browser-polyfill.js",
                "contentscript.js"
            ]
        }
    ],
    "icons": {
        "16": "images\/16x16.png",
        "32": "images\/32x32.png",
        "128": "images\/128x128.png"
    },
    "manifest_version": 2
}