Zaqwes calc

Basic calc in your favorite browser

What is Zaqwes calc?

Zaqwes calc is a Chrome extension developed by vda, and its main feature is "Basic calc in your favorite browser".

Extension Screenshots

screenshot

Download Zaqwes calc Extension CRX File

Download Zaqwes calc extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Basic calc in your favorite browser. It will help you to make calculation. Always close at hand                    

Extension Basic Information

Name Zaqwes calc Zaqwes calc
ID bmdnpcdbckbdbggdjjobgdjmmcglegcf
Official URL https://chromewebstore.google.com/detail/zaqwes-calc/bmdnpcdbckbdbggdjjobgdjmmcglegcf
Description Basic calc in your favorite browser
File Size 87.38 KB
Installation Count 114
Current Version 0.0.1
Last Updated 2013-06-12
Publish Date 2013-06-12
Rating 5.00/5 Total 1 Ratings
Developer vda
Payment Type free
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Zaqwes calc",
    "version": "0.0.1",
    "manifest_version": 2,
    "description": "Basic calc in your favorite browser",
    "background": {
        "page": "background.html"
    },
    "icons": {
        "16": "calc.png",
        "48": "calc.png",
        "128": "calc.png"
    },
    "options_page": "options.html",
    "browser_action": {
        "default_icon": "calc.png",
        "default_title": "Zaqwes calc"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "exclude_matches": [
                "http:\/\/*\/*.jpg",
                "http:\/\/*\/*.png"
            ],
            "css": [
                "calc.css"
            ],
            "js": [
                "libs\/jquery.1.8.js",
                "calc.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "calc.html"
    ]
}