HeartbeatRM Proxy

Proxy web requests through remote HeartbeatRM Agents.

Hvad er HeartbeatRM Proxy?

HeartbeatRM Proxy er en Chrome-udvidelse udviklet af HeartbeatRM, og dens hovedfunktion er "Proxy web requests through remote HeartbeatRM Agents.".

Udvidelsesskærmbilleder

screenshot
screenshot
screenshot

Download HeartbeatRM Proxy-udvidelses-CRX-fil

Download HeartbeatRM Proxy-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn HeartbeatRM Proxy HeartbeatRM Proxy
ID lecppeojfnmcdibcmfhmokdgnnlfcaae
Officiel URL https://chromewebstore.google.com/detail/heartbeatrm-proxy/lecppeojfnmcdibcmfhmokdgnnlfcaae
Beskrivelse Proxy web requests through remote HeartbeatRM Agents.
Filstørrelse 148 KB
Antal Installationer 46
Nuværende Version 1.0.13
Senest Opdateret 2021-07-28
Udgivelsesdato 2021-05-31
Udvikler HeartbeatRM
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://heartbeatrm.com
Hjælpeside-URL https://heartbeatrm.com/support
URL til Fortrolighedspolitik Side https://heartbeatrm.com/privacy-policy
Understøttede Sprog 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"
            ]
        }
    ]
}