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 |
官方網址 | 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" } } |