Jamku Portal

Companion to Jamku Portal Software (portal.jamku.app). It automates process of login into indian tax department websites.

Jamku Portal란 무엇입니까?

Jamku Portal은(는) https://jamku.app에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Companion to Jamku Portal Software (portal.jamku.app). It automates process of login into indian tax department websites."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Jamku Portal 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Automate login into Income Tax and GST Website.
It is companion to Jamku Portal Software (portal.jamku.app). It does not work standalone.

Following website are supported in v1.5
1. Income tax (PAN and TAN)
2. GST
3. TDS Traces


Privacy Policy: https://portal.jamku.app/privacy
The core functionality of the extention is to "Automate login process".
No data is captured/stored/transferred by this extension.                    

확장 프로그램 기본 정보

이름 Jamku Portal Jamku Portal
ID hnmcnimjdeigfpniimpmkanpmppoddec
공식 URL https://chromewebstore.google.com/detail/jamku-portal/hnmcnimjdeigfpniimpmkanpmppoddec
설명 Companion to Jamku Portal Software (portal.jamku.app). It automates process of login into indian tax department websites.
파일 크기 79.35 KB
설치 횟수 484
현재 버전 1.5.0
최근 업데이트 2023-05-10
출시 날짜 2023-04-28
평점 5.00/5 총 5 개의 평점
개발자 https://jamku.app
이메일 [email protected]
결제 유형 in_app
확장 프로그램 웹 사이트 https://portal.jamku.app
도움말 페이지 URL https://help.jamku.app
개인정보 보호 정책 페이지 URL https://portal.jamku.app/terms
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Jamku Portal",
    "version": "1.5.0",
    "description": "Companion to Jamku Portal Software (portal.jamku.app). It automates process of login into indian tax department websites.",
    "short_name": "Jamku Portal",
    "author": "[email protected]",
    "minimum_chrome_version": "101",
    "icons": {
        "16": "img\/jamku_128.png",
        "48": "img\/jamku_128.png",
        "128": "img\/jamku_128.png",
        "512": "img\/jamku_512.png"
    },
    "browser_specific_settings": {
        "gecko": {
            "id": "[email protected]"
        }
    },
    "permissions": [],
    "options_page": "popup\/options.html",
    "action": {
        "default_popup": "popup\/main.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/jamku.app\/*"
            ],
            "js": [
                "content-script\/import-utils.js"
            ],
            "css": [
                "content-script\/jamku.css"
            ],
            "run_at": "document_idle"
        },
        {
            "matches": [
                "https:\/\/eportal.incometax.gov.in\/iec\/foservices\/*"
            ],
            "js": [
                "content-script\/import-it.js"
            ],
            "css": [
                "content-script\/it.css"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "https:\/\/services.gst.gov.in\/services\/login\/*"
            ],
            "js": [
                "content-script\/import-gst.js"
            ],
            "css": [
                "content-script\/gst.css"
            ],
            "run_at": "document_idle"
        },
        {
            "matches": [
                "https:\/\/www.tdscpc.gov.in\/app\/login.xhtml"
            ],
            "js": [
                "content-script\/import-traces.js"
            ],
            "css": [
                "content-script\/traces.css"
            ],
            "run_at": "document_idle"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "chunks\/*-*.js",
                "content-script\/utils.js",
                "content-script\/it.js",
                "content-script\/gst.js",
                "content-script\/traces.js"
            ],
            "matches": [
                "https:\/\/jamku.app\/*",
                "https:\/\/eportal.incometax.gov.in\/*",
                "https:\/\/services.gst.gov.in\/*",
                "https:\/\/www.tdscpc.gov.in\/*"
            ]
        }
    ]
}