Minimalist Calculator
A fast and accurate calculator.
What is Minimalist Calculator?
Minimalist Calculator is a Chrome extension developed by Rhys Mills, and its main feature is "A fast and accurate calculator.".
Extension Screenshots
Download Minimalist Calculator Extension CRX File
Download Minimalist 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
A fast calculator with a clean and minimalist visual style. Currently supports: • Keyboard input • Basic arithmetic (+,-,×,÷) • Modulus function • Exponentiation and nth root functions The calculator is a React app, and uses the big.js and math.js library to improve the precision of calculations.
Extension Basic Information
Name | Minimalist Calculator |
ID | ndjgjlhkejbigpggeceemkahlcbdemhp |
Official URL | https://chromewebstore.google.com/detail/minimalist-calculator/ndjgjlhkejbigpggeceemkahlcbdemhp |
Description | A fast and accurate calculator. |
File Size | 440 KB |
Installation Count | 16 |
Current Version | 1.0.0 |
Last Updated | 2020-03-09 |
Publish Date | 2020-03-08 |
Developer | Rhys Mills |
Payment Type | free |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Minimalist Calculator", "description": "A fast and accurate calculator.", "version": "1.0.0", "browser_action": { "default_popup": "index.html", "default_title": "Minimalist Calculator" }, "icons": { "16": "logo-small.png", "48": "logo-small.png", "128": "logo-small.png" }, "content_security_policy": "script-src 'self' 'sha256-tw5uNCLvtXpPMlwhNWsN4vWp5jVE8kyA0Ot+WWw3+6M='; object-src 'self'", "permissions": [] } |