HeartbeatRM Proxy

Proxy web requests through remote HeartbeatRM Agents.

HeartbeatRM Proxy là gì?

HeartbeatRM Proxy là một tiện ích mở rộng Chrome được phát triển bởi HeartbeatRM, và tính năng chính của nó là "Proxy web requests through remote HeartbeatRM Agents.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng HeartbeatRM Proxy

Tải xuống các tệp mở rộng HeartbeatRM Proxy dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên HeartbeatRM Proxy HeartbeatRM Proxy
ID lecppeojfnmcdibcmfhmokdgnnlfcaae
URL Chính Thức https://chromewebstore.google.com/detail/heartbeatrm-proxy/lecppeojfnmcdibcmfhmokdgnnlfcaae
Mô tả Proxy web requests through remote HeartbeatRM Agents.
Kích Thước Tệp 148 KB
Số Lần Cài Đặt 46
Phiên Bản Hiện Tại 1.0.13
Cập Nhật Lần Cuối 2021-07-28
Ngày Phát Hành 2021-05-31
Nhà Phát Triển HeartbeatRM
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://heartbeatrm.com
URL Trang Trợ Giúp https://heartbeatrm.com/support
URL Trang Chính Sách Bảo Mật https://heartbeatrm.com/privacy-policy
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}