Password Monkey

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

ما هو Password Monkey؟

Password Monkey هو إضافة Chrome تم تطويرها بواسطة marxtyler، والميزة الرئيسية لها هي "Show your password by turning ●●●●●● into plain, readable text.".

لقطات شاشة التمديد

screenshot
screenshot

تحميل ملف CRX للإضافة Password Monkey

قم بتنزيل ملفات الامتداد Password Monkey بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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"
    ]
}