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”。
擴展截圖
下載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.
擴展基本資訊
名稱 | |
ID | pnalpiobekfhpfpjeabjjgnhdmgenbkb |
官方網址 | 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 } } |