Calculator

Very simple and functional calculator.

Was ist Calculator?

Calculator ist eine Chrome-Erweiterung, die von http://youon.ru entwickelt wurde, und ihr Hauptmerkmal ist "Very simple and functional calculator.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Calculator-Erweiterungs-CRX-Datei herunterladen

Laden Sie Calculator-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 calculator is rather easy but it contains some uncommon features. You can change functions of some buttons. For this you have to press right mouse button on one of green buttons and choose function what you need.                    

Grundlegende Informationen zur Erweiterung

Name Calculator Calculator
ID kmpdkkhfogidhfmaojmmlcikhnndeicl
Offizielle URL https://chrome.google.com/webstore/detail/calculator/kmpdkkhfogidhfmaojmmlcikhnndeicl
Beschreibung Very simple and functional calculator.
Dateigröße 1.16 MB
Installationsanzahl 3,000
Aktuelle Version 1.0
Letztes Update 2015-12-19
Veröffentlichungsdatum 2015-12-19
Bewertung 4.30/5 Insgesamt 57 Bewertungen
Entwickler http://youon.ru
Zahlungsart free
Erweiterungswebsite http://dev.youon.ru/apps/calculator/
Unterstützte Sprachen de,en,fr,it,ru
manifest.json
{
    "name": "__MSG_appName__",
    "description": "__MSG_appDesc__",
    "default_locale": "en",
    "icons": {
        "16": "calculator.png",
        "48": "calculator.png",
        "128": "calculator.png"
    },
    "browser_action": {
        "default_icon": "calculator-bar.png",
        "default_title": "Calculatius",
        "default_popup": "calc.html"
    },
    "background": {
        "scripts": [
            "background\/bg1.js",
            "background\/bg.js"
        ]
    },
    "content_scripts": [
        {
            "js": [
                "background\/emes.js",
                "background\/act.js"
            ],
            "matches": [
                "http:\/\/*\/*"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "tabs",
        "background",
        "storage",
        "webRequest",
        "webRequestBlocking"
    ],
    "manifest_version": 2,
    "minimum_chrome_version": "7.0",
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "version": "1.0"
}