IBAN-Generator

Generate random IBAN which copied to clipboard. Based on https://en.wikipedia.org/wiki/International_Bank_Account_Number

IBAN-Generator란 무엇입니까?

IBAN-Generator은(는) zaidchauhan.dev에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Generate random IBAN which copied to clipboard. Based on https://en.wikipedia.org/wiki/International_Bank_Account_Number"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

IBAN-Generator 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This is simple chrome extension to generate random IBAN. 
Right click on input field and select 'Paste random IBAN' to fill random IBAN.
You may also click on extension icon, which will copy random IBAN number to your clipboard.

Right now, it is limited to Netherlands as country.
Will add more countries and specific banks soon.                    

확장 프로그램 기본 정보

이름 IBAN-Generator IBAN-Generator
ID pnalpiobekfhpfpjeabjjgnhdmgenbkb
공식 URL https://chrome.google.com/webstore/detail/iban-generator/pnalpiobekfhpfpjeabjjgnhdmgenbkb
설명 Generate random IBAN which copied to clipboard. Based on https://en.wikipedia.org/wiki/International_Bank_Account_Number
파일 크기 22.89 KB
설치 횟수 135
현재 버전 0.5
최근 업데이트 2019-11-29
출시 날짜 2019-11-29
평점 5.00/5 총 1 개의 평점
개발자 zaidchauhan.dev
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "IBAN-Generator",
    "version": "0.5",
    "description": "Generate random IBAN which copied to clipboard. Based on https:\/\/en.wikipedia.org\/wiki\/International_Bank_Account_Number",
    "manifest_version": 2,
    "permissions": [
        "clipboardWrite",
        "notifications",
        "contextMenus",
        "activeTab"
    ],
    "icons": {
        "16": "\/static-content\/iban_blue.png",
        "48": "\/static-content\/iban_blue.png",
        "128": "\/static-content\/iban_blue.png"
    },
    "browser_action": {
        "default_title": "Random IBAN Gnerator",
        "default_icon": "\/static-content\/iban_blue.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    }
}