Show Passwords

This extension transforms password fields into plain text fields.

什麼是Show Passwords?

Show Passwords是由https://www.dahlkemedia.com開發的Chrome擴展程式,該擴展的主要功能是“This extension transforms password fields into plain text fields.”。

擴展截圖

screenshot

下載Show Passwords擴展crx文件

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

擴展使用說明

                        Change all password inputs on a page into text inputs so you can easily see the contents of the password field. You no longer need to guess which character may or may not have been wrong and you won't need to start over.

NEW in version 1.1: You can now automatically show passwords by checking the box in the popup when clicking on the extension!!!                    

擴展基本資訊

名稱 Show Passwords Show Passwords
ID kmbolocfihljheomgjcolimidpeepdig
官方網址 https://chromewebstore.google.com/detail/show-passwords/kmbolocfihljheomgjcolimidpeepdig
簡介 This extension transforms password fields into plain text fields.
檔案大小 6.14 KB
安裝次數 185
目前版本 1.1
更新時間 2021-12-20
上架時間 2016-08-31
評分 4.00/5 共 2 次評分
開發者 https://www.dahlkemedia.com
電子郵箱 [email protected]
付費類型 free
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Show Passwords",
    "description": "This extension transforms password fields into plain text fields.",
    "version": "1.1",
    "icons": {
        "19": "icon.png"
    },
    "browser_action": {
        "default_title": "Show Passwords",
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "showpasswordsauto.js"
            ],
            "run_at": "document_end"
        }
    ]
}