IITBh CGPA
Calculate CGPA directly from AIMS Portal. Click on the extension logo when on AIMS portal's courses page to see your CGPA.
Vad är IITBh CGPA?
IITBh CGPA är en Chrome-tillägg utvecklad av Kumar Shivendu, och dess huvudfunktion är "Calculate CGPA directly from AIMS Portal. Click on the extension logo when on AIMS portal's courses page to see your CGPA.".
Tilläggsskärmbilder
Ladda ner IITBh CGPA-förlängningens CRX-fil
Ladda ner IITBh CGPA-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
Calculate CGPA directly from IIT Bhilai AIMS Portal.
Grundläggande Information om Tillägg
Namn | IITBh CGPA |
ID | pidnkhnegljcpjeacmfgbjilbhablfkb |
Officiell webbadress | https://chromewebstore.google.com/detail/iitbh-cgpa/pidnkhnegljcpjeacmfgbjilbhablfkb |
Beskrivning | Calculate CGPA directly from AIMS Portal. Click on the extension logo when on AIMS portal's courses page to see your CGPA. |
Filstorlek | 38.76 KB |
Antal Installationer | 282 |
Aktuell Version | 2.3 |
Senast Uppdaterad | 2021-05-08 |
Publiceringsdatum | 2021-03-29 |
Betyg | 4.90/5 Totalt 10 Betyg |
Utvecklare | Kumar Shivendu |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/supercoww/iitbh-cgpa |
Hjälpsida URL | https://github.com/supercoww/iitbh-cgpa |
Stödda Språk | 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 } |