Smart Calc

Select number in the web page and automatically (+, -, /, *) with the previous values. Also you can edit the function by your own.

什么是Smart Calc?

Smart Calc是由andersonfetter开发的Chrome扩展程序,该扩展的主要功能是“Select number in the web page and automatically (+, -, /, *) with the previous values. Also you can edit the function by your own.”。

扩展截图

screenshot
screenshot
screenshot

下载Smart Calc扩展crx文件

下载Smart Calc扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        This is a simple way to make math. Highlighting text in any website. The default function is sum, but you can easely change it jut press the other function (+, -, /, *). On the icon the color indicates which function is selected. For the most advanced users you can edit by yourself the equations by using the pop up page.                    

扩展基本信息

名称 Smart Calc Smart Calc
ID kbmdekffinpekjapcpgchgpkfokklaaj
官方URL https://chromewebstore.google.com/detail/smart-calc/kbmdekffinpekjapcpgchgpkfokklaaj
简介 Select number in the web page and automatically (+, -, /, *) with the previous values. Also you can edit the function by your own.
文件大小 35.43 KB
安装次数 25
当前版本 1.0
更新时间 2016-04-27
上架时间 2016-04-27
评分 5.00/5 共1次评分
开发者 andersonfetter
电子邮箱 [email protected]
付费类型 free
隐私政策页面URL http://www.afetter.com/license
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Smart Calc",
    "description": "Select number in the web page and automatically (+, -, \/, *) with the previous values. Also you can edit the function by your own.",
    "version": "1.0",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": "icon32.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    }
}