IBAN-Generator
Generate random IBAN which copied to clipboard. Based on https://en.wikipedia.org/wiki/International_Bank_Account_Number
Wat is IBAN-Generator?
IBAN-Generator is een Chrome-extensie ontwikkeld door zaidchauhan.dev, en de belangrijkste functie is "Generate random IBAN which copied to clipboard. Based on https://en.wikipedia.org/wiki/International_Bank_Account_Number".
Extensie Screenshots
Download het CRX-bestand van de extensie IBAN-Generator
Download IBAN-Generator-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | |
ID | pnalpiobekfhpfpjeabjjgnhdmgenbkb |
Officiële URL | https://chrome.google.com/webstore/detail/iban-generator/pnalpiobekfhpfpjeabjjgnhdmgenbkb |
Beschrijving | Generate random IBAN which copied to clipboard. Based on https://en.wikipedia.org/wiki/International_Bank_Account_Number |
Bestandsgrootte | 22.89 KB |
Aantal Installaties | 135 |
Huidige Versie | 0.5 |
Laatst Bijgewerkt | 2019-11-29 |
Publicatiedatum | 2019-11-29 |
Beoordeling | 5.00/5 Totaal 1 Beoordelingen |
Ontwikkelaar | zaidchauhan.dev |
Betalingswijze | free |
Ondersteunde Talen | 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 } } |