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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان صفحة المساعدة https://heartbeatrm.com/support
عنوان صفحة سياسة الخصوصية 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"
            ]
        }
    ]
}