HeartbeatRM Proxy

Proxy web requests through remote HeartbeatRM Agents.

Qu'est-ce que HeartbeatRM Proxy ?

HeartbeatRM Proxy est une extension Chrome développée par HeartbeatRM, et sa fonction principale est "Proxy web requests through remote HeartbeatRM Agents.".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension HeartbeatRM Proxy

Téléchargez les fichiers d'extension HeartbeatRM Proxy au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom HeartbeatRM Proxy HeartbeatRM Proxy
ID lecppeojfnmcdibcmfhmokdgnnlfcaae
URL Officiel https://chromewebstore.google.com/detail/heartbeatrm-proxy/lecppeojfnmcdibcmfhmokdgnnlfcaae
Description Proxy web requests through remote HeartbeatRM Agents.
Taille du Fichier 148 KB
Nombre d'Installations 46
Version Actuelle 1.0.13
Dernière Mise à Jour 2021-07-28
Date de Publication 2021-05-31
Développeur HeartbeatRM
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://heartbeatrm.com
URL de la Page d'Aide https://heartbeatrm.com/support
URL de la Page de Politique de Confidentialité https://heartbeatrm.com/privacy-policy
Langues Prises en Charge 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"
            ]
        }
    ]
}