E-tax Password Keeper

Build an Extension!

Vad är E-tax Password Keeper?

E-tax Password Keeper är en Chrome-tillägg utvecklad av Orkhan Talibzade, och dess huvudfunktion är "Build an Extension!".

Tilläggsskärmbilder

screenshot
screenshot
screenshot
screenshot
screenshot

Ladda ner E-tax Password Keeper-förlängningens CRX-fil

Ladda ner E-tax Password Keeper-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn E-tax Password Keeper E-tax Password Keeper
ID bgmkipojddhgkldepjbajgioekjpgjgc
Officiell webbadress https://chrome.google.com/webstore/detail/e-tax-password-keeper/bgmkipojddhgkldepjbajgioekjpgjgc
Beskrivning Build an Extension!
Filstorlek 75.42 KB
Antal Installationer 122
Aktuell Version 0.0001
Senast Uppdaterad 2021-02-07
Publiceringsdatum 2021-02-07
Betyg 5.00/5 Totalt 2 Betyg
Utvecklare Orkhan Talibzade
E-post [email protected]
Betalningssätt free
Hjälpsida URL https://www.linkedin.com/in/orkhan-talibzade/
Stödda Språk 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"
            ]
        }
    ]
}