TDS Credential Manager

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

TDS Credential Managerคืออะไร?

TDS Credential Manager เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://erpcloudanalysis.in และคุณลักษณะหลักของมันคือ "Browser Extension for managing TDS website credentials with one-click copy-paste functionality"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย TDS Credential Manager

ดาวน์โหลดไฟล์ส่วนขยาย TDS Credential Manager ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
}