Results Calc
This extension helps calculate your total and percentage.
什么是Results Calc?
Results Calc是由Nikhil Mopidevi开发的Chrome扩展程序,该扩展的主要功能是“This extension helps calculate your total and percentage.”。
扩展截图
下载Results Calc扩展crx文件
下载Results Calc扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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 |
帮助页面URL | 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" ] } ] } |