DicePhrase

A tool for making strong, memorable passphrases.

Wat is DicePhrase?

DicePhrase is een Chrome-extensie ontwikkeld door Lucas Bleackley Petter, en de belangrijkste functie is "A tool for making strong, memorable passphrases.".

Extensie Screenshots

screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie DicePhrase

Download DicePhrase-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        DicePhrase helps you easily create strong, memorable passphrases, such as "FragrantRenewedAnyoneBakedPossum" or "BazookaClangUnstuckTransferQuoteJokingly", by rolling six-sided dice to randomly select from a set of thousands of words. This system creates passphrases that are more unguessable than if you were to pick words on your own or trust the computer to generate words automatically.

🎲 Passphrases, not passwords
Long, random passphrases are more secure because they're more difficult for an attacker to guess than simple passwords. While a password like "Batman1989" is too easily guessed and "&1KJl6a8y$g*01W}i21!MZ" is too hard to remember, random passphrases like "DonutConfinedCurveHurricaneJuggleWidget" are strong and memorable. Passphrases don't need to be personal to be memorable. Personal things like birthdays, addresses, anniversaries, names, lyrics, books, movies, etc. are not very secret; anyone can find out your address, pet's name, or favourite songs. Picking words randomly ensures your passphrase is unbiased and unpredictable.

🎲 Roll the dice
You do five dice rolls to randomly select each word for your passphrase, so if you need a 6-word passphrase, that's 30 dice rolls. Input the numbers into DicePhrase, which will then use them to look up corresponding words in a table of 7776 possible words to generate your new passphrase. With each additional word, the chances that anyone could ever guess your passphrase become exponentially smaller.

🎲 Why use dice?
Dice are a more reliable and transparent source of randomness than choosing numbers yourself or having a computer generate random numbers. Humans tend to have too much bias when attempting to make random selections, and it's hard to prove that the complex systems used by computers for creating randomness are truly unpredictable. If you don't need such a high level of unpredictability, DicePhrase can generate pseudo-random numbers without dice when you click "Skip" in the main window, although using dice is still recommended.

🎲 When to use passphrases
Passphrases are ideal when used to encrypt information. They're perfect as the master password for a password manager so you only need to remember a single strong passphrase. They're also great for securing WiFi networks, disk encryption, PGP or SSH encryption keys, and any other encryption system. Use them whenever you need memorable authentication in general. For online accounts, having strong passphrases is good, but may not be enough protection from attackers who use techniques like phishing to steal credentials. You should enable Two-Factor Authentication, which adds a second step to the login process, and consider saving unique passphrases for each account in a password manager.

🎲 Secure design
DicePhrase is built to protect the confidentiality of your passphrases. Most importantly, passphrases aren't saved, they're automatically cleared 10 minutes after they've been created (you should memorize them or save them in a password manager application). DicePhrase is also free and open source software, so anyone can inspect the code to verify its safety. You can read more about DicePhrase's security design, as well as how to report bugs, in the Help document.

DicePhrase is based on best practice strategies for creating passphrases by the Electronic Frontier Foundation, security technologist Micah Lee, and the Diceware project.
https://www.eff.org/dice
https://firstlook.org/theintercept/2015/03/26/passphrases-can-memorize-attackers-cant-guess/
http://world.std.com/~reinhold/diceware.html

For more info about DicePhrase, please see:
https://www.lucaspetter.com/software/dicephrase/

For support and help, please see:
https://github.com/dicephrase/dicephrase/blob/master/doc/help.md

To see the code, report bugs, or help build DicePhrase, please see:
https://github.com/dicephrase/dicephrase                    

Basisinformatie over de Extensie

Naam DicePhrase DicePhrase
ID hlcidibhelknhpnimiiogjclajfopdag
Officiële URL https://chromewebstore.google.com/detail/dicephrase/hlcidibhelknhpnimiiogjclajfopdag
Beschrijving A tool for making strong, memorable passphrases.
Bestandsgrootte 1.25 MB
Aantal Installaties 121
Huidige Versie 2.1.2
Laatst Bijgewerkt 2020-11-22
Publicatiedatum 2020-01-07
Ontwikkelaar Lucas Bleackley Petter
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://www.lucaspetter.com/software/dicephrase/
Help Pagina-URL https://github.com/dicephrase/dicephrase/blob/master/doc/help.md
Ondersteunde Talen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "DicePhrase",
    "version": "2.1.2",
    "description": "A tool for making strong, memorable passphrases.",
    "author": "Lucas Bleackley Petter",
    "homepage_url": "https:\/\/www.lucaspetter.com\/software\/dicephrase\/",
    "offline_enabled": true,
    "icons": {
        "1024": "img\/icon-1024.png",
        "512": "img\/icon-512.png",
        "256": "img\/icon-256.png",
        "128": "img\/icon-128.png",
        "64": "img\/icon-64.png",
        "32": "img\/icon-32.png",
        "16": "img\/icon-16.png"
    },
    "minimum_chrome_version": "22",
    "content_security_policy": "default-src 'none'; base-uri 'self'; script-src 'self'; style-src 'self'; img-src 'self'; font-src 'self'; form-action 'self'; sandbox allow-same-origin allow-scripts allow-popups allow-forms;",
    "sandbox": {
        "pages": [
            "help.html",
            "doc\/*"
        ],
        "content_security_policy": "default-src 'none'; base-uri 'self'; style-src 'self'; img-src 'self'; font-src 'self'; form-action 'none'; sandbox allow-popups;"
    },
    "incognito": "split",
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "1024": "img\/icon-1024.png",
            "512": "img\/icon-512.png",
            "256": "img\/icon-256.png",
            "128": "img\/icon-128.png",
            "64": "img\/icon-64.png",
            "32": "img\/icon-32.png",
            "16": "img\/icon-16.png"
        }
    },
    "background": {
        "page": "event-page.html",
        "persistent": false
    },
    "permissions": [
        "clipboardWrite",
        "alarms"
    ]
}