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