DicePhrase

A tool for making strong, memorable passphrases.

DicePhraseとは何ですか?

DicePhraseはLucas Bleackley Petterによって開発されたChromeの拡張機能で、その主な機能は「A tool for making strong, memorable passphrases.」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot

DicePhrase拡張機能のCRXファイルをダウンロード

DicePhrase拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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                    

拡張機能の基本情報

名前 DicePhrase DicePhrase
ID hlcidibhelknhpnimiiogjclajfopdag
公式URL https://chromewebstore.google.com/detail/dicephrase/hlcidibhelknhpnimiiogjclajfopdag
説明 A tool for making strong, memorable passphrases.
ファイルサイズ 1.25 MB
インストール数 121
現在のバージョン 2.1.2
最終更新日 2020-11-22
公開日 2020-01-07
開発者 Lucas Bleackley Petter
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://www.lucaspetter.com/software/dicephrase/
ヘルプページのURL https://github.com/dicephrase/dicephrase/blob/master/doc/help.md
対応言語 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"
    ]
}