Income Tax Credential Manager

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

什么是Income Tax Credential Manager?

Income Tax Credential Manager是由https://erpcloudanalysis.in开发的Chrome扩展程序,该扩展的主要功能是“Browser Extension for managing Income Tax website credentials with one-click copy-paste functionality”。

扩展截图

screenshot

下载Income Tax Credential Manager扩展crx文件

下载Income Tax Credential Manager扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        This is a browser extension of easy management of your client credential of Income Tax. It is loaded with following functionalities
1) One-click Paste button to auto-fill User ID and password on https://www.incometaxindiaefiling.gov.in login page
2) Searching client by name instead of complicated PAN
3) Copy-Paste based import of multiple client credentials via simple Excel template
4) Quick export (or backup) of client credentials to Excel file

Extension maintains complete privacy of credentials as they are stored there itself in browser storage (specific to that PC). Extension does not sends any data to external website.

As part of Open-Source inititative and for maintaining complete transparency, source code of this extension is made available on below URL
https://github.com/dhananjay1405/income-tax-credential-manager

For any queries, doubts, issue, feedback, suggesations please contact developer
Developed & Maintained by: CA Dhananjay Gokhale
Email: [email protected]
Whatsapp/Telegram: (+91) 90284-63366                    

扩展基本信息

名称 Income Tax Credential Manager Income Tax Credential Manager
ID fcoeelnejimjadoffcopbkkcbggfmmfa
官方URL https://chromewebstore.google.com/detail/income-tax-credential-man/fcoeelnejimjadoffcopbkkcbggfmmfa
简介 Browser Extension for managing Income Tax website credentials with one-click copy-paste functionality
文件大小 42.17 KB
安装次数 577
当前版本 1.0
更新时间 2020-07-15
上架时间 2020-07-14
开发者 https://erpcloudanalysis.in
电子邮箱 [email protected]
付费类型 free
扩展官网 https://erpcloudanalysis.in/utility/income-tax-credential-manager
帮助页面URL https://erpcloudanalysis.in/utility/income-tax-credential-manager
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Income Tax Credential Manager",
    "version": "1.0",
    "description": "Browser Extension for managing Income Tax website credentials with one-click copy-paste functionality",
    "icons": {
        "128": "icon-128.png"
    },
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "matches": [
                "https:\/\/portal.incometaxindiaefiling.gov.in\/*"
            ],
            "run_at": "document_idle"
        }
    ],
    "browser_action": {
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage",
        "tabs",
        "activeTab",
        "clipboardWrite"
    ],
    "manifest_version": 2,
    "minimum_chrome_version": "66"
}