Smart Calc

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

Was ist Smart Calc?

Smart Calc ist eine Chrome-Erweiterung, die von andersonfetter entwickelt wurde, und ihr Hauptmerkmal ist "Select number in the web page and automatically (+, -, /, *) with the previous values. Also you can edit the function by your own.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Smart Calc-Erweiterungs-CRX-Datei herunterladen

Laden Sie Smart 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 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.                    

Grundlegende Informationen zur Erweiterung

Name Smart Calc Smart Calc
ID kbmdekffinpekjapcpgchgpkfokklaaj
Offizielle URL https://chromewebstore.google.com/detail/smart-calc/kbmdekffinpekjapcpgchgpkfokklaaj
Beschreibung Select number in the web page and automatically (+, -, /, *) with the previous values. Also you can edit the function by your own.
Dateigröße 35.43 KB
Installationsanzahl 25
Aktuelle Version 1.0
Letztes Update 2016-04-27
Veröffentlichungsdatum 2016-04-27
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler andersonfetter
E-Mail [email protected]
Zahlungsart free
URL der Datenschutzrichtlinien-Seite http://www.afetter.com/license
Unterstützte Sprachen 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
    }
}