Password Viewer

This extension will toggle password inputs to text

Wat is Password Viewer?

Password Viewer is een Chrome-extensie ontwikkeld door jamesthornlea92, en de belangrijkste functie is "This extension will toggle password inputs to text".

Download het CRX-bestand van de extensie Password Viewer

Download Password Viewer-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Password Viewer Password Viewer
ID dbjnjcockkopcddldenaclncicnfolhd
Officiële URL https://chrome.google.com/webstore/detail/password-viewer/dbjnjcockkopcddldenaclncicnfolhd
Beschrijving This extension will toggle password inputs to text
Bestandsgrootte 7.62 KB
Aantal Installaties 947
Huidige Versie 1.0
Laatst Bijgewerkt 2016-07-19
Publicatiedatum 2016-07-19
Beoordeling 4.00/5 Totaal 10 Beoordelingen
Ontwikkelaar jamesthornlea92
Betalingswijze free
Ondersteunde Talen 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"
    }
}