Quick Form Filler
Provides a context menu to fill forms quickly.
Apa itu Quick Form Filler?
Quick Form Filler adalah ekstensi Chrome yang dikembangkan oleh prageethsilva, dan fitur utamanya adalah "Provides a context menu to fill forms quickly.".
Unduh Berkas CRX Ekstensi Quick Form Filler
Unduh file ekstensi Quick Form Filler dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
Version 1: Adds a context menu item to easy copy over the placeholder text into the input text box value.
Informasi Dasar Ekstensi
Nama | Quick Form Filler |
ID | ogofbpejbcelpjpghigpepjnghlegeka |
URL Resmi | https://chromewebstore.google.com/detail/quick-form-filler/ogofbpejbcelpjpghigpepjnghlegeka |
Deskripsi | Provides a context menu to fill forms quickly. |
Ukuran File | 7.82 KB |
Jumlah Instalasi | 131 |
Versi Saat Ini | 1.0 |
Terakhir Diperbarui | 2017-10-23 |
Tanggal Publikasi | 2017-10-23 |
Pengembang | prageethsilva |
Tipe Pembayaran | free |
Bahasa yang Didukung | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Quick Form Filler", "description": "Provides a context menu to fill forms quickly.", "version": "1.0", "icons": { "128": "icon.png" }, "permissions": [ "contextMenus" ], "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "content.js" ] } ] } |