HeartbeatRM Proxy

Proxy web requests through remote HeartbeatRM Agents.

Apa itu HeartbeatRM Proxy?

HeartbeatRM Proxy adalah ekstensi Chrome yang dikembangkan oleh HeartbeatRM, dan fitur utamanya adalah "Proxy web requests through remote HeartbeatRM Agents.".

Screenshot Ekstensi

screenshot
screenshot
screenshot

Unduh Berkas CRX Ekstensi HeartbeatRM Proxy

Unduh file ekstensi HeartbeatRM Proxy dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama HeartbeatRM Proxy HeartbeatRM Proxy
ID lecppeojfnmcdibcmfhmokdgnnlfcaae
URL Resmi https://chromewebstore.google.com/detail/heartbeatrm-proxy/lecppeojfnmcdibcmfhmokdgnnlfcaae
Deskripsi Proxy web requests through remote HeartbeatRM Agents.
Ukuran File 148 KB
Jumlah Instalasi 46
Versi Saat Ini 1.0.13
Terakhir Diperbarui 2021-07-28
Tanggal Publikasi 2021-05-31
Pengembang HeartbeatRM
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://heartbeatrm.com
URL Halaman Bantuan https://heartbeatrm.com/support
URL Halaman Kebijakan Privasi https://heartbeatrm.com/privacy-policy
Bahasa yang Didukung 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"
            ]
        }
    ]
}