Virtual Math Keyboard

On-screen virtual math keyboard

Virtual Math Keyboardคืออะไร?

Virtual Math Keyboard เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Marco Lam และคุณลักษณะหลักของมันคือ "On-screen virtual math keyboard"

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

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Virtual Math Keyboard

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

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

                        Virtual Math Keyboard is a modified version of Virtual Keyboard™ for Google Chrome™ with common math symbols. It is an on-screen keyboard that pops up whenever you click on an input field (not including URL bar) or a shortcut button (The behavior can be set in the Toggle menu).

To find out more, visit: 
Xontab's Virtual Keyboard: http://xontab.com/Apps/VirtualKeyboard/ 
and the Github repository for Virtual Math Keyboard: https://github.com/marcolam2001/chrome-virtual-keyboard/

---New Update---
Added options to reset keyboard order when changing layouts.

---Version History---
1.00 - First release
1.01 - Changing layout options added                    

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

ชื่อ Virtual Math Keyboard Virtual Math Keyboard
ID mebheaenpckpmlaimolcagneiddkclbc
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/virtual-math-keyboard/mebheaenpckpmlaimolcagneiddkclbc
คำอธิบาย On-screen virtual math keyboard
ขนาดไฟล์ 56.71 KB
จำนวนการติดตั้ง 2,527
เวอร์ชันปัจจุบัน 1.01
อัปเดตครั้งล่าสุด 2019-02-24
วันที่เผยแพร่ 2019-01-31
คะแนน 4.40/5 รวมทั้งหมด 5 คะแนน
ผู้พัฒนา Marco Lam
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Virtual Math Keyboard",
    "description": "On-screen virtual math keyboard",
    "manifest_version": 2,
    "version": "1.01",
    "icons": {
        "16": "keyboard.png",
        "48": "keyboard.png",
        "128": "keyboard.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "options_page": "options.html",
    "page_action": {
        "default_icon": "buttons\/keyboard_0.png",
        "default_title": "Virtual Keyboard Toggle",
        "default_popup": "toggle.html"
    },
    "permissions": [
        "tabs",
        ""
    ],
    "web_accessible_resources": [
        "keyboard.html",
        "keyboard_*.html",
        "style.css",
        "options\/*",
        "toggle.html",
        "toggle.js",
        "icons\/*",
        "icons\/backspace.png",
        "icons\/backspace-e.png",
        "icons\/close.png",
        "icons\/enter.png",
        "icons\/enter-e.png",
        "icons\/settings.png",
        "icons\/shift.png",
        "buttons\/*"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "script.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ]
}