RndPhrase
Auto-generated secure passwords.
Что такое RndPhrase?
RndPhrase - это расширение Chrome, разработанное brinchj, и его основная функция - "Auto-generated secure passwords.".
Снимки экрана расширения
Скачать файл CRX расширения RndPhrase
Скачайте файлы расширений RndPhrase в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
About RndPhrase is a small add-on that will transform your regular passwords into secure per-domain passwords. It does so on-the-fly without storing the passwords, or interrupt your browsing experience. Why? The main advantages of this approach is: 1) The password is randomized and thereby very hard to guess. 2) Two sites do not share passwords. If one site is hacked and its passwords leaked, it has no effect on your accounts on other sites. Usage First, configure a seed for RndPhrase through the add-on settings. Second, press '@' in a password box before entering the password to activate RndPhrase. Examples You can try the system using the web-based version at: http://rndphrase.appspot.com/ Some test passwords generated for: facebook.com: sp2ueg3z9gp1mnd4 google.com: pdtstnvtrzzc4zxj twitter.com: wtt1q7ssal3mcjqt (generated using empty seed and password) Wiki Read more at our wiki at: http://wiki.github.com/brinchj/RndPhrase/ Join our discussion group at: https://groups.google.com/d/forum/rndphrase
Основная информация о расширении
Название | |
ID | ggnlobmiclcdfgbkpmbhjijfobbaehkc |
Официальный URL | https://chromewebstore.google.com/detail/rndphrase/ggnlobmiclcdfgbkpmbhjijfobbaehkc |
Описание | Auto-generated secure passwords. |
Размер файла | 39.16 KB |
Количество установок | 18 |
Текущая Версия | 0.9.18 |
Последнее Обновление | 2012-10-19 |
Дата публикации | 2012-10-19 |
Рейтинг | 4.55/5 Всего 11 оценок |
Разработчик | brinchj |
Тип оплаты | free |
Официальный сайт расширения | http://wiki.github.com/brinchj/RndPhrase/ |
URL страницы помощи | http://github.com/brinchj/RndPhrase/issues |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "content_scripts": [ { "js": [ "overlay.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "permissions": [], "all_frames": true } ], "background": { "scripts": [ "background.js" ] }, "name": "RndPhrase", "description": "Auto-generated secure passwords.", "version": "0.9.18", "options_page": "options.html", "icons": { "64": "icon.png", "128": "icon.png" } } |