Password visibility toggle

Allows user to reveal their own passwords on input fields via context menu.

什麼是Password visibility toggle?

Password visibility toggle是由codeberg30開發的Chrome擴展程式,該擴展的主要功能是“Allows user to reveal their own passwords on input fields via context menu.”。

擴展截圖

screenshot
screenshot

下載Password visibility toggle擴展crx文件

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

擴展使用說明

                        Allows users to toggle the visibility of any passwords they have allowed google chrome to store for them by adding an item to the context menu. Users can right click on INPUT fields that have been obfuscated and select the "show password" option from the context menu. The password can be hidden again by right clicking the password field and choosing "hide password". That's it! 

This is a very simple extension and the code is up on github if you want to view it.                    

擴展基本資訊

名稱 Password visibility toggle Password visibility toggle
ID iogkeonlaimdggmffjapaidkcfplenbi
官方網址 https://chromewebstore.google.com/detail/password-visibility-toggl/iogkeonlaimdggmffjapaidkcfplenbi
簡介 Allows user to reveal their own passwords on input fields via context menu.
檔案大小 8.46 KB
安裝次數 505
目前版本 1.0
更新時間 2016-10-20
上架時間 2016-10-20
開發者 codeberg30
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/codeberg30/password-visibility-toggle-chrome-extension
支援的語言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Password visibility toggle",
    "version": "1.0",
    "description": "Allows user to reveal their own passwords on input fields via context menu.",
    "manifest_version": 2,
    "icons": {
        "128": "password_visibility_toggle.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "contextMenus"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "contentscript.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ]
}