Show Hide Passwords

A browser action to reveal your saved passwords.

Was ist Show Hide Passwords?

Show Hide Passwords ist eine Chrome-Erweiterung, die von akilawickramasekara entwickelt wurde, und ihr Hauptmerkmal ist "A browser action to reveal your saved passwords.".

Show Hide Passwords-Erweiterungs-CRX-Datei herunterladen

Laden Sie Show Hide Passwords-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        This App will allow you to show saved passwords in the browser..                    

Grundlegende Informationen zur Erweiterung

Name Show Hide Passwords Show Hide Passwords
ID dakfaecjbjjojelpglfahpbibcgagbnj
Offizielle URL https://chromewebstore.google.com/detail/show-hide-passwords/dakfaecjbjjojelpglfahpbibcgagbnj
Beschreibung A browser action to reveal your saved passwords.
Dateigröße 53.56 KB
Installationsanzahl 13
Aktuelle Version 1.1
Letztes Update 2018-01-27
Veröffentlichungsdatum 2018-01-27
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler akilawickramasekara
Zahlungsart free
Unterstützte Sprachen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Show Hide Passwords",
    "version": "1.1",
    "description": "A browser action to reveal your saved passwords.",
    "browser_action": {
        "default_title": "Show My Passwords",
        "default_icon": "padlock-4-16.png"
    },
    "icons": {
        "16": "padlock-4-16.png",
        "48": "padlock-4-48.png",
        "128": "padlock-4-256.png"
    },
    "content_scripts": [
        {
            "js": [
                "jquery-3.3.1.min.js",
                "script.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "background": {
        "scripts": [
            "jquery-3.3.1.min.js",
            "script.js"
        ],
        "persistent": false
    },
    "manifest_version": 2,
    "web_accessible_resources": [
        "jquery-3.3.1.min.js",
        "script.js"
    ],
    "content_security_policy": "script-src 'self' https:\/\/ajax.googleapis.com; object-src 'self'"
}