Results Calc
This extension helps calculate your total and percentage.
ما هو Results Calc؟
Results Calc هو إضافة Chrome تم تطويرها بواسطة Nikhil Mopidevi، والميزة الرئيسية لها هي "This extension helps calculate your total and percentage.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Results Calc
قم بتنزيل ملفات الامتداد Results Calc بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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.
معلومات أساسية عن التمديد
الاسم | Results Calc |
ID | dkkccfjlejpmkpomkbmgohpbcomliika |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/results-calc/dkkccfjlejpmkpomkbmgohpbcomliika |
الوصف | This extension helps calculate your total and percentage. |
حجم الملف | 600 KB |
عدد التثبيتات | 39 |
النسخة الحالية | 1.4 |
آخر تحديث | 2015-06-09 |
تاريخ النشر | 2015-06-08 |
تقييم | 4.50/5 مجموع تقييمات 8 |
المطور | Nikhil Mopidevi |
نوع الدفع | free |
عنوان صفحة المساعدة | https://www.facebook.com/ResultsCalc |
اللغات المدعومة | 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" ] } ] } |