Chrome Platform Bridge

Chrome Platform Bridge

Vad är Chrome Platform Bridge?

Chrome Platform Bridge är en Chrome-tillägg utvecklad av Morten Frederiksen, och dess huvudfunktion är "Chrome Platform Bridge".

Tilläggsskärmbilder

screenshot

Ladda ner Chrome Platform Bridge-förlängningens CRX-fil

Ladda ner Chrome Platform Bridge-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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                    

Grundläggande Information om Tillägg

Namn Chrome Platform Bridge Chrome Platform Bridge
ID cbfkjbjjmhgmlalmjpmfjpeekkkjneia
Officiell webbadress https://chromewebstore.google.com/detail/chrome-platform-bridge/cbfkjbjjmhgmlalmjpmfjpeekkkjneia
Beskrivning Chrome Platform Bridge
Filstorlek 7.7 KB
Antal Installationer 138
Aktuell Version 1.0.0
Senast Uppdaterad 2018-08-01
Publiceringsdatum 2018-08-01
Betyg 5.00/5 Totalt 1 Betyg
Utvecklare Morten Frederiksen
Betalningssätt free
Tilläggswebbplats https://github.com/frederiksen/chrome-platform-bridge
Stödda Språk 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"
    ]
}