IT Portal Password Lookup

IT Portal Password Lookup. It allows to find Account , Device , Local Password from IT Portal

IT Portal Password Lookup क्या है?

IT Portal Password Lookup https://it-portal.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "IT Portal Password Lookup. It allows to find Account , Device , Local Password from IT Portal"।

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

screenshot
screenshot

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

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

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

                        Simplify the look-up of IT Portal credentials via this plugin. It searches the portal for the site you are on and recommends credentials to use for login. The plugin can also be used to search for credentials without having to log in to the IT Portal.                    

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

नाम IT Portal Password Lookup IT Portal Password Lookup
ID dijocadohljfnagfjhpglffpmcodjpgn
आधिकारिक URL https://chromewebstore.google.com/detail/it-portal-password-lookup/dijocadohljfnagfjhpglffpmcodjpgn
विवरण IT Portal Password Lookup. It allows to find Account , Device , Local Password from IT Portal
फ़ाइल का आकार 34.06 MB
स्थापना संख्या 842
वर्तमान संस्करण 4.4.7
अंतिम अपडेट 2024-02-23
प्रकाशन तिथि 2020-12-21
डेवलपर https://it-portal.com
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://www.it-portal.com/v4
सहायता पृष्ठ URL https://help.siportal.com
गोपनीयता नीति पृष्ठ URL https://www.it-portal.com/v4
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "author": "SIPortal",
    "manifest_version": 3,
    "name": "IT Portal Password Lookup",
    "version": "4.4.7",
    "version_name": "4.4.7",
    "minimum_chrome_version": "88.0",
    "permissions": [
        "storage",
        "tabs",
        "activeTab",
        "contextMenus",
        "webNavigation",
        "scripting",
        "unlimitedStorage",
        "clipboardWrite",
        "notifications"
    ],
    "commands": {
        "fill-password": {
            "suggested_key": "Ctrl+Shift+1",
            "description": "Fill Password. Note : It will fill the first found credential from the portal for the visited url."
        }
    },
    "host_permissions": [
        ""
    ],
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "description": "IT Portal Password Lookup. It allows to find Account , Device , Local Password from IT Portal",
    "content_scripts": [
        {
            "all_frames": true,
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/\/*"
            ],
            "run_at": "document_start",
            "js": [
                "content_script.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "*.html",
                "*.css"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "action": {
        "default_title": "IT Portal Password Lookup",
        "default_popup": "index.html#\/popup"
    },
    "icons": {
        "16": "assets\/Icon-38.png",
        "19": "assets\/Icon-38.png",
        "38": "assets\/Icon-38.png",
        "48": "assets\/Icon-38.png",
        "128": "assets\/Icon-128.png"
    },
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'; style-src 'self' 'unsafe-inline'"
    }
}