IBAN-Generator
Generate random IBAN which copied to clipboard. Based on https://en.wikipedia.org/wiki/International_Bank_Account_Number
IBAN-Generatorคืออะไร?
IBAN-Generator เป็นส่วนขยายของ Chrome ที่พัฒนาโดย zaidchauhan.dev และคุณลักษณะหลักของมันคือ "Generate random IBAN which copied to clipboard. Based on https://en.wikipedia.org/wiki/International_Bank_Account_Number"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย IBAN-Generator
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
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 } } |