URLocker

URLocker can be used to password protect a specific URL. Many times you have to willingly or unwillingly share your laptop with…

Τι είναι το URLocker;

Το URLocker είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Aman Raj, και η κύρια λειτουργία του είναι "URLocker can be used to password protect a specific URL. Many times you have to willingly or unwillingly share your laptop with…".

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

screenshot
screenshot

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

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

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

                        URLocker can be used to password protect a specific URL. 

Many times you have to willingly or unwillingly share your laptop with some friend. And your friend will have all the access to your logged in websites. This can be prevented
Unlocking persists among websites, i.e if you have unlocked a website, then all the other locked websites are also unlocked.

WorkFlow:
Add Button: Adding a website to password protected list
1. Open the website which you want to password protect
2. Once the website loading is complete, open the extension menu by clicking the
extension icon on the browser
3. Click on the green “+” button in the menu
4. If you reload the website, you will be asked for the password if you have not entered the
password for any other website or if you have used lock­all option(explained later)
Remove Button: Removing a website from password protected list
1. Steps to remove a website are similar to adding except for the 3rd step, where instead of clicking the green “+” button, you need to click on the red “­” (minus) button
2. From now on, you will not be asked to enter the password for this website
Lock Button: Locking the password­protected website after successful login
1. After you have entered the correct password and successfully accessed the website, you can access all the websites which you have added to the password­protected list earlier
2. Click on the lock button to reset the lock the websites again
   
Change Password: To change the password
1. Enter the old password. The default password is “asdf” (without quotes)
2. Enter new password
3. Re­enter new password
4. Click on “change password” button. You will be shown a message for successful change
or if something went wrong                    

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

Όνομα URLocker URLocker
ID kllapfdedgneblamambjbbnecahlpdla
Επίσημο URL https://chrome.google.com/webstore/detail/urlocker/kllapfdedgneblamambjbbnecahlpdla
Περιγραφή URLocker can be used to password protect a specific URL. Many times you have to willingly or unwillingly share your laptop with…
Μέγεθος Αρχείου 162 KB
Αριθμός Εγκαταστάσεων 222
Τρέχουσα Έκδοση 0.1
Τελευταία Ενημέρωση 2018-11-17
Ημερομηνία Δημοσίευσης 2018-11-14
Αξιολόγηση 3.40/5 Συνολικά 5 Αξιολογήσεις
Προγραμματιστής Aman Raj
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "URLocker",
    "version": "0.1",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/content.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": {
            "128": "img\/icon_128.png",
            "256": "img\/icon_256.png",
            "512": "img\/icon_512.png"
        },
        "default_popup": "menu.html"
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": true
    },
    "permissions": [
        "activeTab",
        "storage",
        "unlimitedStorage",
        "tabs",
        "background",
        "webRequest"
    ],
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com\/ga.js https:\/\/example.cc; object-src 'self'"
}