URL Locker

Lock access to specified URLs

Τι είναι το URL Locker;

Το URL Locker είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον anyesh, και η κύρια λειτουργία του είναι "Lock access to specified URLs".

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

screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης URL Locker

Λήψη αρχείων επέκτασης URL Locker σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

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

                        Introducing "URL Locker" - Safeguard Your Online Privacy with Confidence

URL Locker is a reliable Chrome extension that acts as a shield designed to protect your browsing privacy and prevent accidental embarrassment during screen sharing sessions. With URL Locker, you can rest assured that your private URLs remain hidden and secure, even in the most public of settings.

Key Features:

Private URL Locking: Easily lock and safeguard specific URLs that you want to keep private. By activating URL Locker, you ensure that these URLs are completely hidden from view, providing you with peace of mind during screen sharing or presentations.

Quick and Easy Locking: With just a few clicks, you can instantly lock sensitive URLs, preventing them from being accessed or accidentally displayed. This intuitive process allows you to swiftly enable or disable the privacy shield as needed.

Enhanced Privacy Controls: URL Locker provides you with an added layer of protection by implementing password authentication. Only authorized individuals with the correct password can access and modify the locked URLs, ensuring maximum privacy and control.

User-Friendly Interface: URL Locker integrates seamlessly into your Chrome browser, providing a user-friendly interface that is easy to navigate and configure. Effortlessly manage your locked URLs and privacy settings for a hassle-free experience.

Peace of Mind: Rest easy knowing that your private URLs are protected and will not be accidentally exposed, saving you from potential embarrassment and maintaining your professional image.

Protect your online privacy and ensure peace of mind during screen sharing sessions with URL Locker. Safeguard your private URLs and maintain control over your browsing experience.

Note: URL Locker does not collect or store any personal information. It operates locally on your browser, prioritizing your privacy and security.                    

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

Όνομα URL Locker URL Locker
ID eipacgmgfkkpaoodnkageeoacgfppofh
Επίσημο URL https://chromewebstore.google.com/detail/url-locker/eipacgmgfkkpaoodnkageeoacgfppofh
Περιγραφή Lock access to specified URLs
Μέγεθος Αρχείου 13.15 KB
Αριθμός Εγκαταστάσεων 508
Τρέχουσα Έκδοση 1.0
Τελευταία Ενημέρωση 2023-05-26
Ημερομηνία Δημοσίευσης 2023-05-25
Αξιολόγηση 4.17/5 Συνολικά 6 Αξιολογήσεις
Προγραμματιστής anyesh
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://anyesh.me/
Διεύθυνση URL της Σελίδας Βοήθειας https://anyesh.me/
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "URL Locker",
    "version": "1.0",
    "manifest_version": 3,
    "description": "Lock access to specified URLs",
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "icon16.png",
            "32": "icon32.png",
            "48": "icon48.png",
            "128": "icon128.png"
        }
    }
}