HeartbeatRM Proxy

Proxy web requests through remote HeartbeatRM Agents.

什么是HeartbeatRM Proxy?

HeartbeatRM Proxy是由HeartbeatRM开发的Chrome扩展程序,该扩展的主要功能是“Proxy web requests through remote HeartbeatRM Agents.”。

扩展截图

screenshot
screenshot
screenshot

下载HeartbeatRM Proxy扩展crx文件

下载HeartbeatRM Proxy扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 HeartbeatRM Proxy HeartbeatRM Proxy
ID lecppeojfnmcdibcmfhmokdgnnlfcaae
官方URL https://chromewebstore.google.com/detail/heartbeatrm-proxy/lecppeojfnmcdibcmfhmokdgnnlfcaae
简介 Proxy web requests through remote HeartbeatRM Agents.
文件大小 148 KB
安装次数 46
当前版本 1.0.13
更新时间 2021-07-28
上架时间 2021-05-31
开发者 HeartbeatRM
电子邮箱 [email protected]
付费类型 free
扩展官网 https://heartbeatrm.com
帮助页面URL https://heartbeatrm.com/support
隐私政策页面URL https://heartbeatrm.com/privacy-policy
支持的语言 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"
            ]
        }
    ]
}