E-tax Password Keeper

Build an Extension!

E-tax Password Keeper là gì?

E-tax Password Keeper là một tiện ích mở rộng Chrome được phát triển bởi Orkhan Talibzade, và tính năng chính của nó là "Build an Extension!".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng E-tax Password Keeper

Tải xuống các tệp mở rộng E-tax Password Keeper dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên E-tax Password Keeper E-tax Password Keeper
ID bgmkipojddhgkldepjbajgioekjpgjgc
URL Chính Thức https://chrome.google.com/webstore/detail/e-tax-password-keeper/bgmkipojddhgkldepjbajgioekjpgjgc
Mô tả Build an Extension!
Kích Thước Tệp 75.42 KB
Số Lần Cài Đặt 122
Phiên Bản Hiện Tại 0.0001
Cập Nhật Lần Cuối 2021-02-07
Ngày Phát Hành 2021-02-07
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển Orkhan Talibzade
Email [email protected]
Loại Thanh Toán free
URL Trang Trợ Giúp https://www.linkedin.com/in/orkhan-talibzade/
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}