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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
            ]
        }
    ]
}