Password Viewer

This extension will toggle password inputs to text

Vad är Password Viewer?

Password Viewer är en Chrome-tillägg utvecklad av jamesthornlea92, och dess huvudfunktion är "This extension will toggle password inputs to text".

Ladda ner Password Viewer-förlängningens CRX-fil

Ladda ner Password Viewer-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        This extension allows you to change all password fields on the page to normal text fields (allowing you to view/copy passwords).

Simply click the icon to toggle.                    

Grundläggande Information om Tillägg

Namn Password Viewer Password Viewer
ID dbjnjcockkopcddldenaclncicnfolhd
Officiell webbadress https://chrome.google.com/webstore/detail/password-viewer/dbjnjcockkopcddldenaclncicnfolhd
Beskrivning This extension will toggle password inputs to text
Filstorlek 7.62 KB
Antal Installationer 947
Aktuell Version 1.0
Senast Uppdaterad 2016-07-19
Publiceringsdatum 2016-07-19
Betyg 4.00/5 Totalt 10 Betyg
Utvecklare jamesthornlea92
Betalningssätt free
Stödda Språk en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Password Viewer",
    "description": "This extension will toggle password inputs to text",
    "version": "1.0",
    "browser_action": {
        "default_icon": "icon128.png"
    },
    "permissions": [
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "popup.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}