ShowPasswords

Gives the user a simple way to show and copy passwords of an input type password field.

什麼是ShowPasswords?

ShowPasswords是由https://kaletsch.tech開發的Chrome擴展程式,該擴展的主要功能是“Gives the user a simple way to show and copy passwords of an input type password field.”。

擴展截圖

screenshot
screenshot
screenshot

下載ShowPasswords擴展crx文件

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

擴展使用說明

                        ShowPasswords is a Chrome Extension that allows to easily access passwords from input fields.

The extensions replaces the input type attribute password with text in an active tab and vice versa. It can also extract passwords in a textarea field which allows simple copying.

ShowPasswords source code is released under MIT License and available at GitHub.                    

擴展基本資訊

名稱 ShowPasswords ShowPasswords
ID hjelhmgihhbonhfncmoblamoenjcppej
官方網址 https://chromewebstore.google.com/detail/showpasswords/hjelhmgihhbonhfncmoblamoenjcppej
簡介 Gives the user a simple way to show and copy passwords of an input type password field.
檔案大小 47.5 KB
安裝次數 313
目前版本 0.1
更新時間 2018-08-03
上架時間 2018-08-03
評分 5.00/5 共 1 次評分
開發者 https://kaletsch.tech
付費類型 free
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "ShowPasswords",
    "short_name": "ShowPasswords",
    "version": "0.1",
    "description": "Gives the user a simple way to show and copy passwords of an input type password field.",
    "icons": {
        "16": "icons\/16.png",
        "32": "icons\/32.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "author": "kaletsch.tech GmbH ",
    "homepage_url": "https:\/\/github.com\/alexka\/showpasswords",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "thirdParty\/jquery-3.3.1.min.js",
                "main.js"
            ]
        }
    ],
    "browser_action": {
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab"
    ]
}