Reveal

Context menu extension to view auto completed hidden password.

Reveal क्या है?

Reveal Shiv द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Context menu extension to view auto completed hidden password."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Reveal एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        How many times have you forgotten the password saved by google passwords and have to manually logout or request for a new one without knowing how to view the hidden password? 

Reveal will help you make the hidden password visible. Simply right click on the password input field and chose 'Reveal password'.                    

एक्सटेंशन की मूल जानकारी

नाम Reveal Reveal
ID coickbnhchmdngjabciaimhdhnbgnpef
आधिकारिक URL https://chromewebstore.google.com/detail/reveal/coickbnhchmdngjabciaimhdhnbgnpef
विवरण Context menu extension to view auto completed hidden password.
फ़ाइल का आकार 182 KB
स्थापना संख्या 7,788
वर्तमान संस्करण 1.0
अंतिम अपडेट 2020-03-03
प्रकाशन तिथि 2020-02-29
रेटिंग 4.40/5 कुल 5 रेटिंग्स
डेवलपर Shiv
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Reveal",
    "description": "Context menu extension to view auto completed hidden password.",
    "version": "1.0",
    "author": "Shivkanthb",
    "permissions": [
        "contextMenus",
        "activeTab"
    ],
    "icons": {
        "16": "images\/eyecon-16x16.png",
        "48": "images\/eyecon-48x48.png",
        "72": "images\/eyecon-72x72.png",
        "128": "images\/eyecon-128x128.png"
    },
    "background": {
        "scripts": [
            "scripts\/event.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "scripts\/content_script.js"
            ]
        }
    ]
}