Secure Password Generator

Generates random secure passwords.

Secure Password Generatorคืออะไร?

Secure Password Generator เป็นส่วนขยายของ Chrome ที่พัฒนาโดย mar.kolya และคุณลักษณะหลักของมันคือ "Generates random secure passwords."

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

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Secure Password Generator

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

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

                        This add-on allows you to easily create random and secure passwords.
Right click on any password field on the webpage and select "Secure Password Generator"/"Generate password". Newly generated password will be inserted into selected field.
You can use "Insert previous password" context menu option if form requires you to repeat your password.
You can also use "Secure Password Generator" button in top right corner of Firefox window to see last generated password, change settings and create new secure passwords.

Hope this is useful. :)                    

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

ชื่อ Secure Password Generator Secure Password Generator
ID dapehldnfebpbfpfknddmlhghjlbjhdb
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/secure-password-generator/dapehldnfebpbfpfknddmlhghjlbjhdb
คำอธิบาย Generates random secure passwords.
ขนาดไฟล์ 364 KB
จำนวนการติดตั้ง 7,344
เวอร์ชันปัจจุบัน 1.0.9
อัปเดตครั้งล่าสุด 2018-10-08
วันที่เผยแพร่ 2018-10-07
คะแนน 4.84/5 รวมทั้งหมด 25 คะแนน
ผู้พัฒนา mar.kolya
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/mar-kolya/secure-password-generator
ภาษาที่รองรับ de,en,es,cs,ru
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_extensionName__",
    "description": "__MSG_extensionDescription__",
    "version": "1.0.9",
    "default_locale": "en",
    "homepage_url": "https:\/\/addons.mozilla.org\/firefox\/addon\/secure-password-generator\/",
    "icons": {
        "16": "icons\/password-16.png",
        "32": "icons\/password-32.png",
        "48": "icons\/password-48.png",
        "64": "icons\/password-64.png"
    },
    "permissions": [
        "contextMenus",
        "activeTab",
        "storage"
    ],
    "browser_action": {
        "browser_style": true,
        "default_icon": {
            "16": "icons\/password-16.png",
            "32": "icons\/password-32.png",
            "48": "icons\/password-48.png",
            "64": "icons\/password-64.png"
        },
        "default_title": "Secure Password Generator",
        "default_popup": "popup.html",
        "theme_icons": [
            {
                "light": "icons\/password-16-light.png",
                "dark": "icons\/password-16.png",
                "size": 16
            },
            {
                "light": "icons\/password-32-light.png",
                "dark": "icons\/password-32.png",
                "size": 32
            }
        ]
    },
    "commands": {
        "generate-password": {
            "suggested_key": {
                "default": "Alt+G"
            },
            "description": "Generate Password"
        },
        "insert-previous-password": {
            "suggested_key": {
                "default": "Alt+L"
            },
            "description": "Insert Previous Password"
        }
    },
    "background": {
        "scripts": [
            "dist\/init.js",
            "dist\/background.js"
        ]
    }
}