Simple Calculator
A simple and very lite calculator for your browser!
什么是Simple Calculator?
Simple Calculator是由chYer开发的Chrome扩展程序,该扩展的主要功能是“A simple and very lite calculator for your browser!”。
扩展截图
下载Simple Calculator扩展crx文件
下载Simple Calculator扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Simple Calculator is a lite addon that renders a simple calculator in the browser toolbar popup. This calculator includes only simple math operations. Just click on the toolbar button to open the interface and start typing your desired math operations. Please note that all calculations are rounded to at most 7 decimal places. You can type either with your keyboard or the embedded virtual keyboard in the popup UI. To report bugs, please fill out the bug report form on the addon's homepage (https://mybrowseraddon.com/calculator.html).
扩展基本信息
名称 | Simple Calculator |
ID | ecpncpmkcjkakaopoapkbalimlpbhjnk |
官方URL | https://chromewebstore.google.com/detail/simple-calculator/ecpncpmkcjkakaopoapkbalimlpbhjnk |
简介 | A simple and very lite calculator for your browser! |
文件大小 | 27.18 KB |
安装次数 | 2,789 |
当前版本 | 0.1.5 |
更新时间 | 2023-08-21 |
上架时间 | 2019-04-15 |
评分 | 3.75/5 共4次评分 |
开发者 | chYer |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://mybrowseraddon.com/calculator.html |
帮助页面URL | https://mybrowseraddon.com/calculator.html |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "version": "0.1.5", "manifest_version": 3, "offline_enabled": true, "permissions": [ "storage" ], "name": "Simple Calculator", "homepage_url": "https:\/\/mybrowseraddon.com\/calculator.html", "description": "A simple and very lite calculator for your browser!", "commands": { "_execute_action": [] }, "background": { "service_worker": "background.js" }, "action": { "default_title": "Simple Calculator", "default_popup": "data\/popup\/popup.html", "default_icon": { "16": "data\/icons\/16.png", "32": "data\/icons\/32.png", "48": "data\/icons\/48.png", "64": "data\/icons\/64.png" } }, "icons": { "16": "data\/icons\/16.png", "32": "data\/icons\/32.png", "48": "data\/icons\/48.png", "64": "data\/icons\/64.png", "128": "data\/icons\/128.png" } } |