HeartbeatRM Proxy

Proxy web requests through remote HeartbeatRM Agents.

HeartbeatRM Proxyคืออะไร?

HeartbeatRM Proxy เป็นส่วนขยายของ Chrome ที่พัฒนาโดย HeartbeatRM และคุณลักษณะหลักของมันคือ "Proxy web requests through remote HeartbeatRM Agents."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย HeartbeatRM Proxy

ดาวน์โหลดไฟล์ส่วนขยาย 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"
            ]
        }
    ]
}