SuperGenPass for Google Chrome™ by Denis

Generate passwords for websites without any clicks and with an extra portable SuperGenPass engine.

SuperGenPass for Google Chrome™ by Denisคืออะไร?

SuperGenPass for Google Chrome™ by Denis เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://sokolov.cc และคุณลักษณะหลักของมันคือ "Generate passwords for websites without any clicks and with an extra portable SuperGenPass engine."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย SuperGenPass for Google Chrome™ by Denis

ดาวน์โหลดไฟล์ส่วนขยาย SuperGenPass for Google Chrome™ by Denis ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Repeatedly using the same password for different websites is very bad. Using password manager is better, but if you lose your database, or need a password away from your computer, you are in trouble.

The best solution is generated passwords.
Every time you need a password, it is generated for you based on your master password and the website domain name.
If you need to access the website on a different computer, just use the same master password and the generated password will be the same.

Why use this over the original SuperGenPass?
============================================
Most importantly, SuperGenPass bookmarklet is absolutely insecure. Any website can steal your master password.
This extension is secure. But it's also more convenient.
Your passwords are generated instantly on a press of a single key.

Why trust the extension?
==================
The privacy policy is available in the codebase:
https://github.com/denis-sokolov/chrome-supergenpass/blob/master/PRIVACY.md

The extension is completely open source and you can easily review all it does.
If you do not understand programming, remember that there are many who do and who review the code they install, so this extension would already be banned by Google if it was evil.

Changelog
========
6. Settings synchronization, fix framed websites, snappier UI, remove page action icon.
5. Whitelist support and prettier UI. Big parts of the code rewritten.
4.1. Minor cleanup, updated jQuery for speed.
4.0. Renamed from ChromeGenPass, since that violated Google Branding Guidelines.
3.2. Fixed a bug when password length was less than 3 or more than 24.
3.1. Added "fill with password" in page popup.
3.0. Add a page action popup. It allows customized password generation as well as unlocking a password without entering it publicly.
2.1. Popups do not prevent clicking on things below. Warning about wrong layout added. Many small fixes.
2.0.2. Fixed huge security issue.
2.0.1. Fixed small bug where update text was not displayed.
2.0. Help added. Icon changed to a Crystal Clear set icon.
1.9. Pre-release of 2.0. Security issue is fixed, now you enter the master password only in private popup.
1.0.2. Fixed bugs, where ChromeGenPass has been breaking key support on other pages, such as RememberTheMilk. Now should work perfectly fine.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ SuperGenPass for Google Chrome™ by Denis SuperGenPass for Google Chrome™ by Denis
ID bmmmhbgdbpnbfefmacdlbpfgegcibkjo
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/supergenpass-for-google-c/bmmmhbgdbpnbfefmacdlbpfgegcibkjo
คำอธิบาย Generate passwords for websites without any clicks and with an extra portable SuperGenPass engine.
ขนาดไฟล์ 265 KB
จำนวนการติดตั้ง 393
เวอร์ชันปัจจุบัน 6.8
อัปเดตครั้งล่าสุด 2022-11-21
วันที่เผยแพร่ 2019-05-29
คะแนน 3.83/5 รวมทั้งหมด 23 คะแนน
ผู้พัฒนา https://sokolov.cc
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/denis-sokolov/chrome-supergenpass
URL หน้าช่วยเหลือ https://github.com/denis-sokolov/chrome-supergenpass/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_name__",
    "short_name": "__MSG_short_name__",
    "version": "6.8",
    "default_locale": "en",
    "description": "__MSG_description__",
    "icons": {
        "16": "img\/logo\/16.png",
        "48": "img\/logo\/48.png",
        "128": "img\/logo\/128.png"
    },
    "author": "http:\/\/sokolov.cc\/",
    "background": {
        "scripts": [
            "3rd\/supergenpass-lib.min.js",
            "src\/lib\/hash.js",
            "src\/lib\/i18n.js",
            "src\/lib\/storage.js",
            "src\/messages.js",
            "src\/events.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "src\/page\/bootstrap.js"
            ],
            "all_frames": true
        }
    ],
    "minimum_chrome_version": "33",
    "options_page": "src\/options\/options.html",
    "optional_permissions": [],
    "permissions": [
        "storage",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "web_accessible_resources": [
        "src\/options\/options.html"
    ]
}