Password Viewer

Reveal and Copy the password hidden in the form of asterisks signs on any web page with a single click

Vad är Password Viewer?

Password Viewer är en Chrome-tillägg utvecklad av Satbir Kaushik, och dess huvudfunktion är "Reveal and Copy the password hidden in the form of asterisks signs on any web page with a single click".

Tilläggsskärmbilder

screenshot
screenshot
screenshot
screenshot

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 facilitates the direct copying or viewing of passwords from input fields containing asterisk signs on any currently open web page.
--
Unlock a seamless browsing experience with our Chrome extension! By installing this powerful tool, you not only enhance your online interactions but also support the creation of valuable and innovative extensions. 
Your contribution fuels my dedication to developing top-notch solutions. Install now and be part of my mission to make your web journey extraordinary.                    

Grundläggande Information om Tillägg

Namn Password Viewer Password Viewer
ID majhkhdiofehedjpbcoakbmoiogbmcdp
Officiell webbadress https://chromewebstore.google.com/detail/password-viewer/majhkhdiofehedjpbcoakbmoiogbmcdp
Beskrivning Reveal and Copy the password hidden in the form of asterisks signs on any web page with a single click
Filstorlek 43.53 KB
Antal Installationer 4,826
Aktuell Version 1.3
Senast Uppdaterad 2023-09-04
Publiceringsdatum 2018-03-17
Betyg 3.86/5 Totalt 7 Betyg
Utvecklare Satbir Kaushik
E-post [email protected]
Betalningssätt free
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Password Viewer",
    "manifest_version": 3,
    "version": "1.3",
    "description": "Reveal and Copy the password hidden in the form of asterisks signs on any web page with a single click",
    "action": {
        "name": "Password Viewer",
        "icons": [
            "icon.png"
        ],
        "default_icon": {
            "19": "icon.png",
            "38": "icon.png"
        },
        "default_title": "Password Viewer"
    },
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "content_scripts": [
        {
            "js": [
                "background.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "copy.svg",
                "hide.svg",
                "show.svg"
            ],
            "matches": [
                ""
            ],
            "use_dynamic_url": true
        }
    ]
}