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에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "IT Portal Password Lookup. It allows to find Account , Device , Local Password from IT Portal"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

IT Portal Password Lookup 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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'"
    }
}