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 هو إضافة Chrome تم تطويرها بواسطة https://erpcloudanalysis.in، والميزة الرئيسية لها هي "Browser Extension for managing Income Tax website credentials with one-click copy-paste functionality".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Income Tax Credential Manager

قم بتنزيل ملفات الامتداد Income Tax Credential Manager بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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
عنوان صفحة المساعدة 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"
}