Calculator Notepad

A free-form calculator notepad that performs calculations as you type.

Calculator Notepad là gì?

Calculator Notepad là một tiện ích mở rộng Chrome được phát triển bởi Sylvester Wilmott, và tính năng chính của nó là "A free-form calculator notepad that performs calculations as you type.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Calculator Notepad

Tải xuống các tệp mở rộng Calculator Notepad dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        Everyday calculations are not just about numbers, they have context in the real world. Calculator Notepad aims to align more closely with everyday scenarios than a traditional calculator. Supports variables, trigonometric functions, mathematical constants, number abbreviations and more.

1. Click the extension icon in the top-right corner of your browser.
2. Take some notes or perform calculations. The results or your expressions will appear in the column on the right.

USAGE

General:
Calculator Notepad will analyse each line of text that you type and try to evaluate any expressions it finds. Each new line represents a new expression, variable or comment. Click a result in the right column to copy it to your clipboard or shift + click to insert the value back into your expressions.

Variables:
Variables help to give context to your calculations by letting you assign a value to a word or phrase. Declare a variable by name followed by “=“ or “is” and the value you want to assign eg:

expenses = 2k
budget is 5000

Once you create your variable, you can reference it at any point after it's declaration eg:

expenses = 2k
subtotal = expenses - 500

Note: Variable names must not contain spaces but can contain underscore(_) characters.

Comments:
Add comments with your calculations by starting the line with "//" or ending it with ":" eg:

// Total amount
Total amount:

PREFERENCES

You can set the preferences for how your calculations are displayed by right-clicking the extension icon.

- Choose from system, light or dark themes.
- Choose from monospace or sans serif fonts.

PRIVACY AND PERMISSIONS

Your work is stored locally and is not sent to any remote server. All of your work remains completely private to you. Calculator Notepad requires no special permissions to work.

---

If you have any problems or feedback regarding Calculator Notepad, write a review or leave a comment in the support tab.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Calculator Notepad Calculator Notepad
ID cohaahnhpenkgocdefaacohfgneijecf
URL Chính Thức https://chrome.google.com/webstore/detail/calculator-notepad/cohaahnhpenkgocdefaacohfgneijecf
Mô tả A free-form calculator notepad that performs calculations as you type.
Kích Thước Tệp 19.78 KB
Số Lần Cài Đặt 145
Phiên Bản Hiện Tại 1.4.7
Cập Nhật Lần Cuối 2022-06-14
Ngày Phát Hành 2022-03-17
Nhà Phát Triển Sylvester Wilmott
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/SylvesterWilmott/calculator-notepad-chrome
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_ext_name__",
    "description": "__MSG_ext_description__",
    "version": "1.4.7",
    "manifest_version": 3,
    "default_locale": "en",
    "icons": {
        "16": "images\/icon16.png",
        "24": "images\/icon24.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "permissions": [
        "storage",
        "contextMenus"
    ],
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "action": {
        "default_title": "__MSG_ext_name__",
        "default_popup": "html\/index.html"
    }
}