Pwd#

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

什麼是Pwd#?

Pwd#是由https://phill84.org開發的Chrome擴展程式,該擴展的主要功能是“Pwdhash 1.7 for Chrome. Press ctrl+\ to fill in password fields.”。

擴展截圖

screenshot
screenshot
screenshot

下載Pwd#擴展crx文件

下載Pwd#擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
    }
}