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 Marlon Lückert द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension adds a button to websites which display math graphs to directly open them in xr-graph.now.sh."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में XR Graph - Browser Integration एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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.                    

एक्सटेंशन की मूल जानकारी

नाम XR Graph - Browser Integration XR Graph - Browser Integration
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"
        }
    ]
}