HeartbeatRM Proxy

Proxy web requests through remote HeartbeatRM Agents.

¿Qué es HeartbeatRM Proxy?

HeartbeatRM Proxy es una extensión de Chrome desarrollada por HeartbeatRM, y su función principal es "Proxy web requests through remote HeartbeatRM Agents.".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión HeartbeatRM Proxy

Descarga archivos de extensión HeartbeatRM Proxy en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre HeartbeatRM Proxy HeartbeatRM Proxy
ID lecppeojfnmcdibcmfhmokdgnnlfcaae
URL Oficial https://chromewebstore.google.com/detail/heartbeatrm-proxy/lecppeojfnmcdibcmfhmokdgnnlfcaae
Descripción Proxy web requests through remote HeartbeatRM Agents.
Tamaño del Archivo 148 KB
Cantidad de Instalaciones 46
Versión Actual 1.0.13
Última Actualización 2021-07-28
Fecha de Publicación 2021-05-31
Desarrollador HeartbeatRM
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://heartbeatrm.com
URL de la Página de Ayuda https://heartbeatrm.com/support
URL de la Página de Política de Privacidad https://heartbeatrm.com/privacy-policy
Idiomas Soportados 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"
            ]
        }
    ]
}