Password Lock for WhatsApp™ Web

Automatically lock WhatsApp Web after a period of time or by pressing the action button

Τι είναι το Password Lock for WhatsApp™ Web;

Το Password Lock for WhatsApp™ Web είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον chandler.stimson, και η κύρια λειτουργία του είναι "Automatically lock WhatsApp Web after a period of time or by pressing the action button".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Password Lock for WhatsApp™ Web

Λήψη αρχείων επέκτασης Password Lock for WhatsApp™ Web σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        This extension allows you to password-protect your WhatsApp Web account. It offers two modes of operation:
The extension prompts you to enter the password when you open WhatsApp Web.
The extension only prompts you to enter the password after a period. In this mode, you can ask to lock WhatsApp after the period is expired.

Usage Instruction:
After installation, click the action button once to open WhatsApp Web next to your current tab.
Enter your password and confirm it in the confirmation box.
Press the "Change Password" button to activate the password protection. From now on, the extension will block  WhatsApp access on any subsequent requests.

Notes:
 * Press the action button to lock WhatsApp Web. This will lock all open instances of WhatsApp. The extension will open a new, locked one for you if there are no instances.
You can also configure a keyboard shortcut for the action button. This way, you can quickly lock WhatsApp when needed.
 * The extension also locks right-click context menu. You can disable this feature from "options" panel                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Password Lock for WhatsApp™ Web Password Lock for WhatsApp™ Web
ID ggeffkmohfcdjimlicjohhodmjgeccdi
Επίσημο URL https://chromewebstore.google.com/detail/password-lock-for-whatsap/ggeffkmohfcdjimlicjohhodmjgeccdi
Περιγραφή Automatically lock WhatsApp Web after a period of time or by pressing the action button
Μέγεθος Αρχείου 183 KB
Αριθμός Εγκαταστάσεων 9,464
Τρέχουσα Έκδοση 0.1.3
Τελευταία Ενημέρωση 2024-01-25
Ημερομηνία Δημοσίευσης 2023-01-10
Αξιολόγηση 5.00/5 Συνολικά 4 Αξιολογήσεις
Προγραμματιστής chandler.stimson
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://webextension.org/listing/password-lock-for-whatsapp.html
Διεύθυνση URL της Σελίδας Βοήθειας https://webextension.org/listing/password-lock-for-whatsapp.html
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Password Lock for WhatsApp\u2122 Web",
    "description": "Automatically lock WhatsApp Web after a period of time or by pressing the action button",
    "version": "0.1.3",
    "manifest_version": 3,
    "permissions": [
        "storage",
        "alarms",
        "idle"
    ],
    "host_permissions": [
        "https:\/\/web.whatsapp.com\/*"
    ],
    "background": {
        "service_worker": "worker.js"
    },
    "action": {
        "default_title": "Open WhatsApp Web or focus an already opened one then lock it"
    },
    "icons": {
        "16": "data\/icons\/16.png",
        "32": "data\/icons\/32.png",
        "48": "data\/icons\/48.png",
        "64": "data\/icons\/64.png",
        "128": "data\/icons\/128.png",
        "256": "data\/icons\/256.png",
        "512": "data\/icons\/512.png"
    },
    "homepage_url": "https:\/\/webextension.org\/listing\/password-lock-for-whatsapp.html",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/web.whatsapp.com\/*"
            ],
            "js": [
                "\/data\/blocker\/run.js"
            ],
            "css": [
                "\/data\/blocker\/run.css"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "\/data\/lock\/index.html"
            ],
            "matches": [
                "https:\/\/web.whatsapp.com\/*"
            ]
        }
    ],
    "commands": {
        "_execute_action": []
    }
}