Password Monkey

Show your password by turning ●●●●●● into plain, readable text.

Password Monkey क्या है?

Password Monkey marxtyler द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Show your password by turning ●●●●●● into plain, readable text."।

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

screenshot
screenshot

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

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

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

                        Think you wrote your password incorrectly? Need to see an autofilled password? Check it with Password Monkey.                    

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

नाम Password Monkey Password Monkey
ID loknnoblecekficeagblpoegjfbmlmah
आधिकारिक URL https://chromewebstore.google.com/detail/password-monkey/loknnoblecekficeagblpoegjfbmlmah
विवरण Show your password by turning ●●●●●● into plain, readable text.
फ़ाइल का आकार 268 KB
स्थापना संख्या 521
वर्तमान संस्करण 1.0.0
अंतिम अपडेट 2019-02-12
प्रकाशन तिथि 2019-02-06
रेटिंग 5.00/5 कुल 1 रेटिंग्स
डेवलपर marxtyler
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Password Monkey",
    "version": "1.0.0",
    "description": "Show your password by turning \u25cf\u25cf\u25cf\u25cf\u25cf\u25cf into plain, readable text.",
    "icons": {
        "16": "monkey.png",
        "48": "monkey.png",
        "128": "monkey.png"
    },
    "browser_action": {
        "default_title": "Password Monkey",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "matches": [
                ""
            ],
            "js": [
                "in-content.js",
                "monkey.js"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+P",
                "mac": "MacCtrl+Shift+P"
            },
            "description": "Opens Password Monkey"
        }
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'; img-src * data: 'self' 'unsafe-eval'",
    "offline_enabled": true,
    "permissions": [
        "declarativeContent",
        "storage",
        "tabs",
        "",
        "activeTab"
    ]
}