IBAN-Generator

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

IBAN-Generator là gì?

IBAN-Generator là một tiện ích mở rộng Chrome được phát triển bởi zaidchauhan.dev, và tính năng chính của nó là "Generate random IBAN which copied to clipboard. Based on https://en.wikipedia.org/wiki/International_Bank_Account_Number".

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

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng IBAN-Generator

Tải xuống các tệp mở rộng IBAN-Generator 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

                        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.                    

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

Tên IBAN-Generator IBAN-Generator
ID pnalpiobekfhpfpjeabjjgnhdmgenbkb
URL Chính Thức https://chrome.google.com/webstore/detail/iban-generator/pnalpiobekfhpfpjeabjjgnhdmgenbkb
Mô tả Generate random IBAN which copied to clipboard. Based on https://en.wikipedia.org/wiki/International_Bank_Account_Number
Kích Thước Tệp 22.89 KB
Số Lần Cài Đặt 135
Phiên Bản Hiện Tại 0.5
Cập Nhật Lần Cuối 2019-11-29
Ngày Phát Hành 2019-11-29
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển zaidchauhan.dev
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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
    }
}