PasswordMaker

With a single password, generate a unique password for each site. Based on passwordmaker.org

Τι είναι το PasswordMaker;

Το PasswordMaker είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://blog.brunomassa.com, και η κύρια λειτουργία του είναι "With a single password, generate a unique password for each site. Based on passwordmaker.org".

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        Instead remembering several passwords for each each you have an account, you *need only to remember one*.

This simple application generates a unique password combining your master password and the name of the site you are visiting. So even using the same password over and over, each site will get a different and unique.

So, even if a site is hacked and your password stolen, you protect your other sites from being invaded using your password.


# Features
* Automatically get the site address -URL- from the page you are current seeing
* Get different parts of the site address, like protocol and subpaths (www)
* Change the method of the generator: SHA, MD5, HMAC
* Create different profiles, so for sites that only allow numbers and letters can use one profile, while other you can use a complete set, including symbols
* Save the master password in the disk, in the RAM (reseted when you close browser) or never save it anywere                    

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

Όνομα PasswordMaker PasswordMaker
ID gnfjppomohbcojfccghjcgahfofgmgdn
Επίσημο URL https://chromewebstore.google.com/detail/passwordmaker/gnfjppomohbcojfccghjcgahfofgmgdn
Περιγραφή With a single password, generate a unique password for each site. Based on passwordmaker.org
Μέγεθος Αρχείου 109 KB
Αριθμός Εγκαταστάσεων 78
Τρέχουσα Έκδοση 2.3
Τελευταία Ενημέρωση 2013-07-05
Ημερομηνία Δημοσίευσης 2013-07-04
Αξιολόγηση 3.00/5 Συνολικά 2 Αξιολογήσεις
Προγραμματιστής https://blog.brunomassa.com
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "name": "PasswordMaker",
    "description": "With a single password, generate a unique password for each site. Based on passwordmaker.org",
    "version": "2.3",
    "manifest_version": 2,
    "options_page": "options.html",
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_icon": "icon48.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "jquery.min.js",
                "content.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/*"
            ]
        }
    ],
    "icons": {
        "128": "icon128.png",
        "16": "icon16.png",
        "48": "icon48.png"
    },
    "permissions": [
        "tabs"
    ]
}