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ファイルをダウンロード

IBAN-Generator拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
    }
}