Calculator
Very simple and functional calculator.
What is Calculator?
Calculator is a Chrome extension developed by http://youon.ru, and its main feature is "Very simple and functional calculator.".
Extension Screenshots
Download Calculator Extension CRX File
Download Calculator 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
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.
Extension Basic Information
Name | |
ID | kmpdkkhfogidhfmaojmmlcikhnndeicl |
Official URL | https://chrome.google.com/webstore/detail/calculator/kmpdkkhfogidhfmaojmmlcikhnndeicl |
Description | Very simple and functional calculator. |
File Size | 1.16 MB |
Installation Count | 3,000 |
Current Version | 1.0 |
Last Updated | 2015-12-19 |
Publish Date | 2015-12-19 |
Rating | 4.30/5 Total 57 Ratings |
Developer | http://youon.ru |
Payment Type | free |
Extension Website | http://dev.youon.ru/apps/calculator/ |
Supported Languages | 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" } |