Chrome Platform Bridge

Chrome Platform Bridge

Co to jest Chrome Platform Bridge?

Chrome Platform Bridge to rozszerzenie Chrome opracowane przez Morten Frederiksen, a jego główną funkcją jest „Chrome Platform Bridge”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Chrome Platform Bridge

Pobierz pliki rozszerzeń Chrome Platform Bridge w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Chrome Platform Bridge Chrome Platform Bridge
ID cbfkjbjjmhgmlalmjpmfjpeekkkjneia
Oficjalny URL https://chromewebstore.google.com/detail/chrome-platform-bridge/cbfkjbjjmhgmlalmjpmfjpeekkkjneia
Opis Chrome Platform Bridge
Rozmiar pliku 7.7 KB
Liczba instalacji 138
Aktualna Wersja 1.0.0
Ostatnia Aktualizacja 2018-08-01
Data Publikacji 2018-08-01
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper Morten Frederiksen
Typ Płatności free
Strona Rozszerzenia https://github.com/frederiksen/chrome-platform-bridge
Obsługiwane Języki 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"
    ]
}