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 파일 다운로드

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

확장 프로그램 사용 설명서

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