HeartbeatRM Proxy

Proxy web requests through remote HeartbeatRM Agents.

Was ist HeartbeatRM Proxy?

HeartbeatRM Proxy ist eine Chrome-Erweiterung, die von HeartbeatRM entwickelt wurde, und ihr Hauptmerkmal ist "Proxy web requests through remote HeartbeatRM Agents.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

HeartbeatRM Proxy-Erweiterungs-CRX-Datei herunterladen

Laden Sie HeartbeatRM Proxy-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name HeartbeatRM Proxy HeartbeatRM Proxy
ID lecppeojfnmcdibcmfhmokdgnnlfcaae
Offizielle URL https://chromewebstore.google.com/detail/heartbeatrm-proxy/lecppeojfnmcdibcmfhmokdgnnlfcaae
Beschreibung Proxy web requests through remote HeartbeatRM Agents.
Dateigröße 148 KB
Installationsanzahl 46
Aktuelle Version 1.0.13
Letztes Update 2021-07-28
Veröffentlichungsdatum 2021-05-31
Entwickler HeartbeatRM
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://heartbeatrm.com
Hilfeseite URL https://heartbeatrm.com/support
URL der Datenschutzrichtlinien-Seite https://heartbeatrm.com/privacy-policy
Unterstützte Sprachen 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"
            ]
        }
    ]
}