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