Accops Native Client

Send a message to a native application.

O que é Accops Native Client?

Accops Native Client é uma extensão do Chrome desenvolvida por Accops, e sua principal característica é "Send a message to a native application.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Accops Native Client

Baixe arquivos de extensão Accops Native Client 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

                        Webpage and native applications can exchange messages through Accops Native Client extension using an API that is similar to the other message passing APIs. Native applications that support this feature must register a native messaging host that knows how to communicate with the extension. Chrome starts the host in a separate process and communicates with it using standard input and standard output streams.                    

Informações Básicas da Extensão

Nome Accops Native Client Accops Native Client
ID kgnnlaamhmjmhkeegiaimkfojcagjcml
URL Oficial https://chromewebstore.google.com/detail/accops-native-client/kgnnlaamhmjmhkeegiaimkfojcagjcml
Descrição Send a message to a native application.
Tamanho do Arquivo 24.53 KB
Contagem de Instalações 4,268
Versão Atual 3.1.0
Última Atualização 2022-07-06
Data de Publicação 2019-02-01
Classificação 3.00/5 Total de 2 Avaliações
Desenvolvedor Accops
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://www.accops.com/privacy-policy
URL da Página de Ajuda http://support.accops.com/support/home
URL da Página de Política de Privacidade https://www.accops.com/privacy-policy
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Accops Native Client",
    "short_name": "Accops NativeClient",
    "version": "3.1.0",
    "manifest_version": 2,
    "minimum_chrome_version": "33",
    "description": "Send a message to a native application.",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "icons": {
        "16": "icon-16.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*\/propalms-nativemsg-iframe-jhepmpfdpjajhggflbhkjihdcplbchef.html",
                "https:\/\/*\/propalms-nativemsg-iframe-jhepmpfdpjajhggflbhkjihdcplbchef.html"
            ],
            "js": [
                "content_script.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        "propalms-nativemsg-iframe-jhepmpfdpjajhggflbhkjihdcplbchef.html",
        "manifest.json"
    ],
    "permissions": [
        "nativeMessaging"
    ]
}