XR Graph - Browser Integration
This extension adds a button to websites which display math graphs to directly open them in xr-graph.now.sh.
XR Graph - Browser Integrationคืออะไร?
XR Graph - Browser Integration เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Marlon Lückert และคุณลักษณะหลักของมันคือ "This extension adds a button to websites which display math graphs to directly open them in xr-graph.now.sh."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย XR Graph - Browser Integration
ดาวน์โหลดไฟล์ส่วนขยาย XR Graph - Browser Integration ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
                        The website XR-graph.now.sh lets you display math functions in virtual reality.
This browser extensions lets you easily import function from other websites like google.com or wolframalpha.com.
If you enter a math function at Google Search (e.g. "cos(x) + sin(y)") a new button "View in VR" will appear. This button redirects you to XR-graph.now.sh and lets you interact with the graph in virtual reality.                     ข้อมูลพื้นฐานของส่วนขยาย
| ชื่อ |   |  
| ID | mkapnmjibodohclhpalpcohdibinijfi | 
| URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/xr-graph-browser-integrat/mkapnmjibodohclhpalpcohdibinijfi | 
| คำอธิบาย | This extension adds a button to websites which display math graphs to directly open them in xr-graph.now.sh. | 
| ขนาดไฟล์ | 92.36 KB | 
| จำนวนการติดตั้ง | 167 | 
| เวอร์ชันปัจจุบัน | 1.0.0 | 
| อัปเดตครั้งล่าสุด | 2020-03-08 | 
| วันที่เผยแพร่ | 2020-03-07 | 
| ผู้พัฒนา | Marlon Lückert | 
| อีเมล | [email protected] | 
| ประเภทการชำระเงิน | free | 
| URL หน้าช่วยเหลือ | https://xr-graph.now.sh/ | 
| ภาษาที่รองรับ | en | 
| manifest.json | |
 {
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "XR Graph - Browser Integration",
    "description": "This extension adds a button to websites which display math graphs to directly open them in xr-graph.now.sh.",
    "version": "1.0.0",
    "icons": {
        "16": "icon\/icon-16.png",
        "32": "icon\/icon-32.png",
        "48": "icon\/icon-48.png",
        "128": "icon\/icon-128.png"
    },
    "browser_action": {
        "default_icon": {
            "19": "icon\/icon-19.png",
            "38": "icon\/icon-38.png"
        },
        "default_title": "XR Graph - Browser Integration",
        "default_popup": "html\/popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.wolframalpha.com\/*"
            ],
            "js": [
                "js\/wolframalpha.js"
            ],
            "css": [
                "css\/wolframalpha.css"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "https:\/\/www.google.com\/*"
            ],
            "js": [
                "js\/google.js"
            ],
            "css": [
                "css\/google.css"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "http:\/\/weitz.de\/*"
            ],
            "js": [
                "js\/weitz.js"
            ],
            "css": [
                "css\/weitz.css"
            ],
            "run_at": "document_end"
        }
    ]
}  |  |