Pwd#

Pwdhash 1.7 for Chrome. Press ctrl+\ to fill in password fields.

Pwd# क्या है?

Pwd# https://phill84.org द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Pwdhash 1.7 for Chrome. Press ctrl+\ to fill in password fields."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Pwd# एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Chrome extension based on PwdHash 1.7

Usage:

- click icon to open popup page and save master password
- press ctrl+\ to fill in all password input on page (including iframes), page doesn’t necessarily need to be completely loaded, hashed password is copied into clipboard so that it's possible to manually paste it in case autofill doesn't work
- double click on a filled password input to show unmasked password                    

एक्सटेंशन की मूल जानकारी

नाम Pwd# Pwd#
ID banbidfnbpjlkeegobegafaalkcneihe
आधिकारिक URL https://chromewebstore.google.com/detail/pwd/banbidfnbpjlkeegobegafaalkcneihe
विवरण Pwdhash 1.7 for Chrome. Press ctrl+\ to fill in password fields.
फ़ाइल का आकार 126 KB
स्थापना संख्या 23
वर्तमान संस्करण 0.3
अंतिम अपडेट 2012-12-28
प्रकाशन तिथि 2012-12-28
रेटिंग 3.00/5 कुल 2 रेटिंग्स
डेवलपर https://phill84.org
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Pwd#",
    "version": "0.3",
    "description": "Pwdhash 1.7 for Chrome. Press ctrl+\\  to fill in password fields.",
    "icons": {
        "16": "ico\/hash16.png",
        "48": "ico\/hash48.png",
        "128": "ico\/hash128.png"
    },
    "permissions": [
        "storage",
        "clipboardWrite"
    ],
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "pwdhash.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "background": {
        "page": "background.html"
    },
    "browser_action": {
        "default_title": "Pwd#",
        "default_icon": "ico\/hash16.png",
        "default_popup": "popup.html"
    }
}