TDS Credential Manager

Browser Extension for managing TDS website credentials with one-click copy-paste functionality

TDS Credential Manager란 무엇입니까?

TDS Credential Manager은(는) https://erpcloudanalysis.in에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Browser Extension for managing TDS website credentials with one-click copy-paste functionality"입니다.

확장 프로그램 스크린샷

screenshot

TDS Credential Manager 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        This extension is a one-click solution for automated copy-paste (or auto-populate in technical terms) of various fields on login page of tdscpc.gov.in website, which otherwise manually takes almost 40-60 seconds. Extension manages and store list of client with respective information/credentials list in browser storage for quick selection of client. It supports import of client information/credential list from Excel into extension memory using by grabing Excel clipboard data. Also export for backup is supported in the form of copy to clipboard in the form of Excel data


Source of the add-in availble on GitHub
https://github.com/dhananjay1405/tds-credential-manager-extension

Latest Version: 1.1
Bug Fixes: Copy to Excel button was not working, hence its functionality is now fixed.                    

확장 프로그램 기본 정보

이름 TDS Credential Manager TDS Credential Manager
ID hmcgibgejmeoolpgjcjfmlphldpgjpce
공식 URL https://chromewebstore.google.com/detail/tds-credential-manager/hmcgibgejmeoolpgjcjfmlphldpgjpce
설명 Browser Extension for managing TDS website credentials with one-click copy-paste functionality
파일 크기 44.36 KB
설치 횟수 238
현재 버전 1.1
최근 업데이트 2020-07-03
출시 날짜 2020-07-02
개발자 https://erpcloudanalysis.in
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://erpcloudanalysis.in/utility/tds-credential-manager
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "TDS Credential Manager",
    "version": "1.1",
    "description": "Browser Extension for managing TDS website credentials with one-click copy-paste functionality",
    "icons": {
        "128": "icon-128.png"
    },
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "matches": [
                "https:\/\/www.tdscpc.gov.in\/app\/login.xhtml"
            ],
            "run_at": "document_idle"
        }
    ],
    "browser_action": {
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage",
        "tabs",
        "activeTab",
        "clipboardWrite"
    ],
    "manifest_version": 2,
    "minimum_chrome_version": "66"
}