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
官方網址 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"
            ]
        }
    ]
}