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文件

下載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
官方網址 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"
}