HeartbeatRM Proxy

Proxy web requests through remote HeartbeatRM Agents.

What is HeartbeatRM Proxy?

HeartbeatRM Proxy is a Chrome extension developed by HeartbeatRM, and its main feature is "Proxy web requests through remote HeartbeatRM Agents.".

Extension Screenshots

screenshot
screenshot
screenshot

Download HeartbeatRM Proxy Extension CRX File

Download HeartbeatRM Proxy extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name HeartbeatRM Proxy HeartbeatRM Proxy
ID lecppeojfnmcdibcmfhmokdgnnlfcaae
Official URL https://chromewebstore.google.com/detail/heartbeatrm-proxy/lecppeojfnmcdibcmfhmokdgnnlfcaae
Description Proxy web requests through remote HeartbeatRM Agents.
File Size 148 KB
Installation Count 46
Current Version 1.0.13
Last Updated 2021-07-28
Publish Date 2021-05-31
Developer HeartbeatRM
Email [email protected]
Payment Type free
Extension Website https://heartbeatrm.com
Help Page URL https://heartbeatrm.com/support
Privacy Policy Page URL https://heartbeatrm.com/privacy-policy
Supported Languages 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"
            ]
        }
    ]
}