HeartbeatRM Proxy

Proxy web requests through remote HeartbeatRM Agents.

O que é HeartbeatRM Proxy?

HeartbeatRM Proxy é uma extensão do Chrome desenvolvida por HeartbeatRM, e sua principal característica é "Proxy web requests through remote HeartbeatRM Agents.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão HeartbeatRM Proxy

Baixe arquivos de extensão HeartbeatRM Proxy 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

                        Proxy browser traffic through your HeartbeatRM agents to achieve VPN-like functionality. When enabled, your web requests are routed through the remote computer of your choice!

Prerequisites: Must have a HeartbeatRM user account and agent installed on one or more devices.

After installing extension, log into the HeartbeatRM web interface (https://app.heartbeatrm.com). Select the desired agent you wish to proxy through, and look for the "Start Proxy" button in the top-right corner of the page.                    

Informações Básicas da Extensão

Nome HeartbeatRM Proxy HeartbeatRM Proxy
ID lecppeojfnmcdibcmfhmokdgnnlfcaae
URL Oficial https://chromewebstore.google.com/detail/heartbeatrm-proxy/lecppeojfnmcdibcmfhmokdgnnlfcaae
Descrição Proxy web requests through remote HeartbeatRM Agents.
Tamanho do Arquivo 148 KB
Contagem de Instalações 46
Versão Atual 1.0.13
Última Atualização 2021-07-28
Data de Publicação 2021-05-31
Desenvolvedor HeartbeatRM
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://heartbeatrm.com
URL da Página de Ajuda https://heartbeatrm.com/support
URL da Página de Política de Privacidade https://heartbeatrm.com/privacy-policy
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "HeartbeatRM Proxy",
    "version": "1.0.13",
    "description": "Proxy web requests through remote HeartbeatRM Agents.",
    "homepage_url": "https:\/\/heartbeatrm.com",
    "icons": {
        "16": "assets\/main.png",
        "128": "assets\/main.png"
    },
    "permissions": [
        "proxy",
        "",
        "notifications",
        "webRequest",
        "webRequestBlocking"
    ],
    "browser_action": {
        "default_icon": "assets\/disconnected.png",
        "default_title": "HeartbeatRM Agent Proxy",
        "default_popup": "popup.html"
    },
    "background": {
        "persistent": true,
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.heartbeatrm.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}