E-tax Password Keeper
Build an Extension!
Was ist E-tax Password Keeper?
E-tax Password Keeper ist eine Chrome-Erweiterung, die von Orkhan Talibzade entwickelt wurde, und ihr Hauptmerkmal ist "Build an Extension!".
Erweiterungsscreenshots
E-tax Password Keeper-Erweiterungs-CRX-Datei herunterladen
Laden Sie E-tax Password Keeper-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
E-Tax Password Keeper - is an Chrome and Edge extension for simplifying access to Tax accounts of Companies and Sole Traders. Accountants can keep all the necessary information to enter the tax account of each company in this extension and then fill in all the required fields just by selecting the company name from the list. Thus, there is no need to copy information for each field from a separate file or write it manually.
Grundlegende Informationen zur Erweiterung
Name | |
ID | bgmkipojddhgkldepjbajgioekjpgjgc |
Offizielle URL | https://chrome.google.com/webstore/detail/e-tax-password-keeper/bgmkipojddhgkldepjbajgioekjpgjgc |
Beschreibung | Build an Extension! |
Dateigröße | 75.42 KB |
Installationsanzahl | 122 |
Aktuelle Version | 0.0001 |
Letztes Update | 2021-02-07 |
Veröffentlichungsdatum | 2021-02-07 |
Bewertung | 5.00/5 Insgesamt 2 Bewertungen |
Entwickler | Orkhan Talibzade |
[email protected] | |
Zahlungsart | free |
Hilfeseite URL | https://www.linkedin.com/in/orkhan-talibzade/ |
Unterstützte Sprachen | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "E-tax Password Keeper", "version": "0.0001", "description": "Build an Extension!", "manifest_version": 2, "browser_action": { "default_popup": "popup.html", "default_icon": { "16": "images\/VP icon.png", "32": "images\/VP icon.png", "48": "images\/VP icon.png", "128": "images\/VP icon.png" } }, "icons": { "16": "images\/VP icon.png", "32": "images\/VP icon.png", "48": "images\/VP icon.png", "128": "images\/VP icon.png" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "permissions": [ "activeTab", "storage" ], "content_scripts": [ { "matches": [ "https:\/\/login.e-taxes.gov.az\/login\/" ], "js": [ "content.js" ] } ] } |