IBAN-Generator

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

Was ist IBAN-Generator?

IBAN-Generator ist eine Chrome-Erweiterung, die von zaidchauhan.dev entwickelt wurde, und ihr Hauptmerkmal ist "Generate random IBAN which copied to clipboard. Based on https://en.wikipedia.org/wiki/International_Bank_Account_Number".

Erweiterungsscreenshots

screenshot
screenshot

IBAN-Generator-Erweiterungs-CRX-Datei herunterladen

Laden Sie IBAN-Generator-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name IBAN-Generator IBAN-Generator
ID pnalpiobekfhpfpjeabjjgnhdmgenbkb
Offizielle URL https://chrome.google.com/webstore/detail/iban-generator/pnalpiobekfhpfpjeabjjgnhdmgenbkb
Beschreibung Generate random IBAN which copied to clipboard. Based on https://en.wikipedia.org/wiki/International_Bank_Account_Number
Dateigröße 22.89 KB
Installationsanzahl 135
Aktuelle Version 0.5
Letztes Update 2019-11-29
Veröffentlichungsdatum 2019-11-29
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler zaidchauhan.dev
Zahlungsart free
Unterstützte Sprachen 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
    }
}