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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Companion to Jamku Portal Software (portal.jamku.app). It automates process of login into indian tax department websites."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Jamku Portal एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 |
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\/*" ] } ] } |