Chrome Platform Bridge

Chrome Platform Bridge

Chrome Platform Bridge क्या है?

Chrome Platform Bridge Morten Frederiksen द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Chrome Platform Bridge"।

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

screenshot

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

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

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

                        What is this project about? This project demonstrates a bridge from JavaScript to the platform hosting the browser.

What can it be used for? The bridging functionallity can be used to mix a typically web-app and local resources. The resources could be: the file system, a hardware device or some legacy software.

Project site: https://github.com/frederiksen/chrome-platform-bridge                    

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

नाम Chrome Platform Bridge Chrome Platform Bridge
ID cbfkjbjjmhgmlalmjpmfjpeekkkjneia
आधिकारिक URL https://chromewebstore.google.com/detail/chrome-platform-bridge/cbfkjbjjmhgmlalmjpmfjpeekkkjneia
विवरण Chrome Platform Bridge
फ़ाइल का आकार 7.7 KB
स्थापना संख्या 138
वर्तमान संस्करण 1.0.0
अंतिम अपडेट 2018-08-01
प्रकाशन तिथि 2018-08-01
रेटिंग 5.00/5 कुल 1 रेटिंग्स
डेवलपर Morten Frederiksen
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/frederiksen/chrome-platform-bridge
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Chrome Platform Bridge",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "version": "1.0.0",
    "description": "Chrome Platform Bridge",
    "content_scripts": [
        {
            "js": [
                "content-script.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "nativeMessaging"
    ]
}