Chrome Platform Bridge

Chrome Platform Bridge

O que é Chrome Platform Bridge?

Chrome Platform Bridge é uma extensão do Chrome desenvolvida por Morten Frederiksen, e sua principal característica é "Chrome Platform Bridge".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Chrome Platform Bridge

Baixe arquivos de extensão Chrome Platform Bridge no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Chrome Platform Bridge Chrome Platform Bridge
ID cbfkjbjjmhgmlalmjpmfjpeekkkjneia
URL Oficial https://chromewebstore.google.com/detail/chrome-platform-bridge/cbfkjbjjmhgmlalmjpmfjpeekkkjneia
Descrição Chrome Platform Bridge
Tamanho do Arquivo 7.7 KB
Contagem de Instalações 138
Versão Atual 1.0.0
Última Atualização 2018-08-01
Data de Publicação 2018-08-01
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor Morten Frederiksen
Tipo de Pagamento free
Site da Extensão https://github.com/frederiksen/chrome-platform-bridge
Idiomas Suportados 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"
    ]
}