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.”。
扩展截图
下载Jamku Portal扩展crx文件
下载Jamku Portal扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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 |
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\/*" ] } ] } |