Simple Offline Calculator

A scientific and graphing calculator.

Simple Offline Calculatorคืออะไร?

Simple Offline Calculator เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Ian Esteves do Nascimento และคุณลักษณะหลักของมันคือ "A scientific and graphing calculator."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Simple Offline Calculator

ดาวน์โหลดไฟล์ส่วนขยาย Simple Offline Calculator ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        A calculator extension for Google Chrome.
This extension is 100% open source.

Features
 - A simple calculator with many mathematical functions
 - A 2D graphing calculator that can plot multiple functions simultaneously
 - No idle processes (no performance hit while it's not being used)
 - A debug page that shows the parse tree and other information

Suggestions are always welcome :)

Commands
 - help : shows all commands
 - clear : clears the results screen
 - memory : shows values stored in memory
            using memory :  := 
            example : x := 3+10^2
 - log : shows error log for the last calculation done
 - functions : shows available functions
 - plot : opens the graphical calculator
 - tree : opens the debug window

Versions

0.6
 - Automatically adds last result to memory
 - Function arguments now have different names
 - More functions

0.5
 - Added localization support (portuguese, german, japanese)
 - Added context menu to popup
 - More functions

0.4
 - Displays mouse position in the plot window
 - Changed number of points calculated when plotting functions
 - More functions
 - More error messages

0.3
 - Added a page for plotting functions
 - Added time recording on debug page

0.2
 - More error messages
 - Added memory support
 - Added conditional expressions
 - Added input history
 - Added functions

0.1
 - First release!
 - Interprets mathematical expressions
 - Supports operators +, -, *, /, %, ^ and parentheses
 - A web page shows the order in which the operations are evaluated                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Simple Offline Calculator Simple Offline Calculator
ID hggicmogahedhllhjjhifddgcphgaggo
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/simple-offline-calculator/hggicmogahedhllhjjhifddgcphgaggo
คำอธิบาย A scientific and graphing calculator.
ขนาดไฟล์ 31.41 KB
จำนวนการติดตั้ง 5,000
เวอร์ชันปัจจุบัน 0.6.1
อัปเดตครั้งล่าสุด 2016-06-14
วันที่เผยแพร่ 2016-06-14
คะแนน 3.29/5 รวมทั้งหมด 21 คะแนน
ผู้พัฒนา Ian Esteves do Nascimento
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/IanEsteves5/SimpleOfflineCalculator
ภาษาที่รองรับ de,en,pt-BR,pt-PT,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_extName__",
    "short_name": "__MSG_extShortName__",
    "description": "__MSG_extDescription__",
    "version": "0.6.1",
    "author": "Ian Esteves do Nascimento",
    "homepage_url": "https:\/\/github.com\/IanEsteves5\/SimpleOfflineCalculator",
    "default_locale": "en",
    "offline_enabled": true,
    "permissions": [
        "contextMenus"
    ],
    "icons": {
        "16": "resources\/image\/icon_16.png",
        "48": "resources\/image\/icon_48.png",
        "128": "resources\/image\/icon_128.png"
    },
    "browser_action": {
        "default_icon": {
            "19": "resources\/image\/icon_19.png",
            "38": "resources\/image\/icon_38.png"
        },
        "default_popup": "popup.html",
        "default_title": "__MSG_extName__ v0.6"
    }
}