Modern Password Manager

Browser Extension for the self-hosted password manager that is available at https://github.com/BenjaminHae/modern-password-manager.…

Modern Password Manager क्या है?

Modern Password Manager bradevelop द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Browser Extension for the self-hosted password manager that is available at https://github.com/BenjaminHae/modern-password-manager.…"।

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

screenshot
screenshot

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

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

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

                        Browser Extension for the self-hosted password manager that is available at https://github.com/BenjaminHae/modern-password-manager.
Allows the user to use accounts from the self-hosted instance for logging in on webpages.

Offers access through popup (viewing/selecting accounts for origin of current tab) and context menu (inserting passwords and username).                    

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

नाम Modern Password Manager Modern Password Manager
ID nicghopbfhgnjbbkdhkhaiekhpdjdfge
आधिकारिक URL https://chromewebstore.google.com/detail/modern-password-manager/nicghopbfhgnjbbkdhkhaiekhpdjdfge
विवरण Browser Extension for the self-hosted password manager that is available at https://github.com/BenjaminHae/modern-password-manager.…
फ़ाइल का आकार 543 KB
स्थापना संख्या 55
वर्तमान संस्करण 0.5.1
अंतिम अपडेट 2021-03-31
प्रकाशन तिथि 2020-12-28
रेटिंग 5.00/5 कुल 1 रेटिंग्स
डेवलपर bradevelop
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/BenjaminHae/modern-password-manager
सहायता पृष्ठ URL https://github.com/BenjaminHae/modern-password-manager/issues
गोपनीयता नीति पृष्ठ URL https://github.com/BenjaminHae/PwChromeExtension/blob/master/dataprivacy.md
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Modern Password Manager",
    "version": "0.5.1",
    "permissions": [
        "activeTab",
        "*:\/\/*\/*",
        "contextMenus",
        "storage"
    ],
    "browser_action": {
        "default_popup": "popup\/index.html",
        "default_icon": "assets\/iconLoggedOut.png",
        "default_title": "Modern Password Manager"
    },
    "content_scripts": [
        {
            "js": [
                "contentscript.js"
            ],
            "run_at": "document_idle",
            "all_frames": true,
            "matches": [
                ""
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "options_ui": {
        "page": "options\/index.html",
        "chrome_style": true
    },
    "web_accessible_resources": [
        "webaccessible\/*",
        "assets\/*"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}