TDS Credential Manager

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

TDS Credential Manager là gì?

TDS Credential Manager là một tiện ích mở rộng Chrome được phát triển bởi https://erpcloudanalysis.in, và tính năng chính của nó là "Browser Extension for managing TDS website credentials with one-click copy-paste functionality".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng TDS Credential Manager

Tải xuống các tệp mở rộng TDS Credential Manager dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên TDS Credential Manager TDS Credential Manager
ID hmcgibgejmeoolpgjcjfmlphldpgjpce
URL Chính Thức https://chromewebstore.google.com/detail/tds-credential-manager/hmcgibgejmeoolpgjcjfmlphldpgjpce
Mô tả Browser Extension for managing TDS website credentials with one-click copy-paste functionality
Kích Thước Tệp 44.36 KB
Số Lần Cài Đặt 238
Phiên Bản Hiện Tại 1.1
Cập Nhật Lần Cuối 2020-07-03
Ngày Phát Hành 2020-07-02
Nhà Phát Triển https://erpcloudanalysis.in
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://erpcloudanalysis.in/utility/tds-credential-manager
Ngôn Ngữ Được Hỗ Trợ 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"
}