IBAN-Generator
Generate random IBAN which copied to clipboard. Based on https://en.wikipedia.org/wiki/International_Bank_Account_Number
Qu'est-ce que IBAN-Generator ?
IBAN-Generator est une extension Chrome développée par zaidchauhan.dev, et sa fonction principale est "Generate random IBAN which copied to clipboard. Based on https://en.wikipedia.org/wiki/International_Bank_Account_Number".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension IBAN-Generator
Téléchargez les fichiers d'extension IBAN-Generator au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | |
ID | pnalpiobekfhpfpjeabjjgnhdmgenbkb |
URL Officiel | https://chrome.google.com/webstore/detail/iban-generator/pnalpiobekfhpfpjeabjjgnhdmgenbkb |
Description | Generate random IBAN which copied to clipboard. Based on https://en.wikipedia.org/wiki/International_Bank_Account_Number |
Taille du Fichier | 22.89 KB |
Nombre d'Installations | 135 |
Version Actuelle | 0.5 |
Dernière Mise à Jour | 2019-11-29 |
Date de Publication | 2019-11-29 |
Évaluation | 5.00/5 Total 1 Évaluations |
Développeur | zaidchauhan.dev |
Type de Paiement | free |
Langues Prises en Charge | 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 } } |