E-tax Password Keeper

Build an Extension!

E-tax Password Keeper란 무엇입니까?

E-tax Password Keeper은(는) Orkhan Talibzade에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Build an Extension!"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

E-tax Password Keeper 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 E-tax Password Keeper E-tax Password Keeper
ID bgmkipojddhgkldepjbajgioekjpgjgc
공식 URL https://chrome.google.com/webstore/detail/e-tax-password-keeper/bgmkipojddhgkldepjbajgioekjpgjgc
설명 Build an Extension!
파일 크기 75.42 KB
설치 횟수 122
현재 버전 0.0001
최근 업데이트 2021-02-07
출시 날짜 2021-02-07
평점 5.00/5 총 2 개의 평점
개발자 Orkhan Talibzade
이메일 [email protected]
결제 유형 free
도움말 페이지 URL https://www.linkedin.com/in/orkhan-talibzade/
지원되는 언어 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"
            ]
        }
    ]
}