AMS Auto Fill
This is an chrome Extension which helps user to auto fill a form based on json input.
Apa itu AMS Auto Fill?
AMS Auto Fill adalah ekstensi Chrome yang dikembangkan oleh Fusion SD, dan fitur utamanya adalah "This is an chrome Extension which helps user to auto fill a form based on json input.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi AMS Auto Fill
Unduh file ekstensi AMS Auto Fill 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
Informasi Dasar Ekstensi
Nama | |
ID | goleodhjeigcnckfjlfgflcpohmmkapp |
URL Resmi | https://chrome.google.com/webstore/detail/ams-auto-fill/goleodhjeigcnckfjlfgflcpohmmkapp |
Deskripsi | This is an chrome Extension which helps user to auto fill a form based on json input. |
Ukuran File | 11.62 KB |
Jumlah Instalasi | 174 |
Versi Saat Ini | 1.2.2 |
Terakhir Diperbarui | 2016-11-14 |
Tanggal Publikasi | 2016-11-14 |
Penilaian | 4.00/5 Total 3 Penilaian |
Pengembang | Fusion SD |
[email protected] | |
Tipe Pembayaran | free |
Bahasa yang Didukung | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "AMS Auto Fill", "short_name": "AMS", "description": "This is an chrome Extension which helps user to auto fill a form based on json input.", "version": "1.2.2", "offline_enabled": true, "background": { "persistent": false, "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/rollsroycemotorcars.force.com\/*" ], "js": [ "content.js" ], "all_frames": false } ], "permissions": [ "tabs", "clipboardRead", "clipboardWrite", "activeTab" ], "page_action": { "default_icon": { "16": "images\/icon16.png", "24": "images\/icon24.png", "32": "images\/icon32.png" }, "default_title": "AMS Auto Fill", "default_popup": "popup.html" } } |