Results Calc
This extension helps calculate your total and percentage.
Was ist Results Calc?
Results Calc ist eine Chrome-Erweiterung, die von Nikhil Mopidevi entwickelt wurde, und ihr Hauptmerkmal ist "This extension helps calculate your total and percentage.".
Erweiterungsscreenshots
Results Calc-Erweiterungs-CRX-Datei herunterladen
Laden Sie Results Calc-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
This is an exclusive extension for GRIET students. So next time when checking your results you don't need a calculator. Use the green button in the address bar to know your total and percentage. This extension appears and works only on our results site (www.results.griet.in) and it doesn't annoy you when on other sites. It works well for results of all branches for all years of B.Tech as well as M.Tech, M.B.A & M.C.A.
Grundlegende Informationen zur Erweiterung
Name | Results Calc |
ID | dkkccfjlejpmkpomkbmgohpbcomliika |
Offizielle URL | https://chromewebstore.google.com/detail/results-calc/dkkccfjlejpmkpomkbmgohpbcomliika |
Beschreibung | This extension helps calculate your total and percentage. |
Dateigröße | 600 KB |
Installationsanzahl | 39 |
Aktuelle Version | 1.4 |
Letztes Update | 2015-06-09 |
Veröffentlichungsdatum | 2015-06-08 |
Bewertung | 4.50/5 Insgesamt 8 Bewertungen |
Entwickler | Nikhil Mopidevi |
Zahlungsart | free |
Hilfeseite URL | https://www.facebook.com/ResultsCalc |
Unterstützte Sprachen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Results Calc", "description": "This extension helps calculate your total and percentage.", "version": "1.4", "permissions": [ "http:\/\/www.results.griet.in\/*", "declarativeContent", "activeTab" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "icons": { "16": "icons\/icon16.png", "19": "icons\/icon19.png", "38": "icons\/icon38.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "page_action": { "default_icon": { "19": "icons\/icon19.png", "38": "icons\/icon38.png" }, "default_title": "Results Calc", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "http:\/\/www.results.griet.in\/*" ], "js": [ "contentscript.js" ] } ] } |