HeartbeatRM Proxy

Proxy web requests through remote HeartbeatRM Agents.

Wat is HeartbeatRM Proxy?

HeartbeatRM Proxy is een Chrome-extensie ontwikkeld door HeartbeatRM, en de belangrijkste functie is "Proxy web requests through remote HeartbeatRM Agents.".

Extensie Screenshots

screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie HeartbeatRM Proxy

Download HeartbeatRM Proxy-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam HeartbeatRM Proxy HeartbeatRM Proxy
ID lecppeojfnmcdibcmfhmokdgnnlfcaae
Officiële URL https://chromewebstore.google.com/detail/heartbeatrm-proxy/lecppeojfnmcdibcmfhmokdgnnlfcaae
Beschrijving Proxy web requests through remote HeartbeatRM Agents.
Bestandsgrootte 148 KB
Aantal Installaties 46
Huidige Versie 1.0.13
Laatst Bijgewerkt 2021-07-28
Publicatiedatum 2021-05-31
Ontwikkelaar HeartbeatRM
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://heartbeatrm.com
Help Pagina-URL https://heartbeatrm.com/support
URL van de Privacybeleid Pagina https://heartbeatrm.com/privacy-policy
Ondersteunde Talen 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"
            ]
        }
    ]
}