HeartbeatRM Proxy

Proxy web requests through remote HeartbeatRM Agents.

Cos'è HeartbeatRM Proxy?

HeartbeatRM Proxy è un'estensione di Chrome sviluppata da HeartbeatRM, e la sua funzione principale è "Proxy web requests through remote HeartbeatRM Agents.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione HeartbeatRM Proxy

Scarica i file di estensione HeartbeatRM Proxy in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome HeartbeatRM Proxy HeartbeatRM Proxy
ID lecppeojfnmcdibcmfhmokdgnnlfcaae
URL Ufficiale https://chromewebstore.google.com/detail/heartbeatrm-proxy/lecppeojfnmcdibcmfhmokdgnnlfcaae
Descrizione Proxy web requests through remote HeartbeatRM Agents.
Dimensione del File 148 KB
Conteggio Installazioni 46
Versione Corrente 1.0.13
Ultimo Aggiornamento 2021-07-28
Data di Pubblicazione 2021-05-31
Sviluppatore HeartbeatRM
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://heartbeatrm.com
URL della Pagina di Aiuto https://heartbeatrm.com/support
URL della Pagina della Politica sulla Privacy https://heartbeatrm.com/privacy-policy
Lingue Supportate 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"
            ]
        }
    ]
}