Melanto Calculator

One different scientific calculator...

Melanto Calculator là gì?

Melanto Calculator là một tiện ích mở rộng Chrome được phát triển bởi https://melanto.com, và tính năng chính của nó là "One different scientific calculator...".

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

screenshot
screenshot

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

Tải xuống các tệp mở rộng Melanto Calculator 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

                        This is kinda unusual scientific calculator. 

What makes it unusual is that you can see both sides of the current binary operation. For example -- if you type 2 + 2 you'll see exactly "2 + 2" until you press "=". The tool was made with touch-screen in mind and should be ready for touch-screen chromebooks. 

On devices with keyboard you can use the obvious keys: number keys, dot (floating point), +, -, *, /, Enter (=), ESC (C) and Backspace. The advanced ("scientific") functions are not yet accessible with keyboard shortcuts (but better keyboard support is planned for the next releases).

The initial goal of this extension was to be a real-life example of  jQuery Mobile (and it worked as such) but somehow, with the time, more options were added and it became full-featured scientific calculator.  It is, however, still work in progress, so let me know if you find a bug, if something isn't working or if you want to see new feature added.

Options:

There are 3 different “themes” for you too choose from. You can change the theme from the options page. Select between black, white or the original “3d buttons”. (Just click the “options” link at the bottom-right of the extension's popup and select the respective theme from the list)

Other versions of Melanto Calculator

The same tool is available in 3 different versions: this one (extension added to the toolbar), as standalone chrome app (adding calculator icon to the apps page and opening the tool in its own browser tab) and as “desktop” app (pens the calculator in separate window, simulating desktop app). Here are the other two versions:

App version:
https://chrome.google.com/webstore/detail/melanto-calculator/nioffklpggjkmgpndbfklpnclpohpjid

“Desktop” version:
https://chrome.google.com/webstore/detail/calculator/inhhlmhdllknkepmabbkhnlbaddllabl

All the 3 versions come with the same underlying code but I couldn’t create one single tool to address all the 3 ways of use because Chrome doesn’t allow apps to add icon to the toolbar (so we need the extension), while extension can’t add icon to the apps page (so we need an app) and then, at some moment Chrome offered the “packaged apps” option and I made the “desktop” version for those who want it in separate window, acting as separate app…

DISCLAIMER OF WARRANTIES:
MELANTO CALCULATOR IS PROVIDED “AS IS” AND WITHOUT WARRANTY OF ANY KIND

www.melanto.com                    

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

Tên Melanto Calculator Melanto Calculator
ID olhcajgllkpacioibcjiniefblpmpech
URL Chính Thức https://chromewebstore.google.com/detail/melanto-calculator/olhcajgllkpacioibcjiniefblpmpech
Mô tả One different scientific calculator...
Kích Thước Tệp 632 KB
Số Lần Cài Đặt 12,676
Phiên Bản Hiện Tại 4.0
Cập Nhật Lần Cuối 2018-09-17
Ngày Phát Hành 2018-09-17
Đánh Giá 4.23/5 Tổng số 53 Đánh Giá
Nhà Phát Triển https://melanto.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://melanto.com
URL Trang Trợ Giúp http://melanto.com/calculator_extension.html
URL Trang Chính Sách Bảo Mật https://melanto.com/privacy.html
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Melanto Calculator",
    "description": "One different scientific calculator...",
    "short_name": "Calculator",
    "version": "4.0",
    "homepage_url": "https:\/\/melanto.com\/calculator-info.html",
    "browser_action": {
        "default_popup": "index.html",
        "default_icon": "19.png",
        "default_title": "Melanto Calculator"
    },
    "background": {
        "scripts": [
            "install.js"
        ],
        "persistent": false
    },
    "icons": {
        "19": "19.png",
        "128": "128.png"
    },
    "manifest_version": 2,
    "offline_enabled": true,
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Alt+C",
                "windows": "Alt+C",
                "mac": "Alt+C",
                "chromeos": "Alt+C",
                "linux": "Alt+C"
            }
        }
    },
    "permissions": [
        "clipboardRead",
        "clipboardWrite"
    ],
    "options_page": "options_page\/index.html"
}