HeartbeatRM Proxy

Proxy web requests through remote HeartbeatRM Agents.

Co je HeartbeatRM Proxy?

HeartbeatRM Proxy je rozšíření Chrome vyvinuté HeartbeatRM, a jeho hlavní funkcí je „Proxy web requests through remote HeartbeatRM Agents.“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření HeartbeatRM Proxy

Stáhněte si soubory rozšíření HeartbeatRM Proxy ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název HeartbeatRM Proxy HeartbeatRM Proxy
ID lecppeojfnmcdibcmfhmokdgnnlfcaae
Oficiální URL https://chromewebstore.google.com/detail/heartbeatrm-proxy/lecppeojfnmcdibcmfhmokdgnnlfcaae
Popis Proxy web requests through remote HeartbeatRM Agents.
Velikost souboru 148 KB
Počet instalací 46
Aktuální Verze 1.0.13
Poslední Aktualizace 2021-07-28
Datum Vydání 2021-05-31
Vývojář HeartbeatRM
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://heartbeatrm.com
URL Stránky Nápovědy https://heartbeatrm.com/support
URL Stránky Zásad Ochrany Soukromí https://heartbeatrm.com/privacy-policy
Podporované Jazyky 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"
            ]
        }
    ]
}