AMS Auto Fill
This is an chrome Extension which helps user to auto fill a form based on json input.
AMS Auto Fill là gì?
AMS Auto Fill là một tiện ích mở rộng Chrome được phát triển bởi Fusion SD, và tính năng chính của nó là "This is an chrome Extension which helps user to auto fill a form based on json input.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng AMS Auto Fill
Tải xuống các tệp mở rộng AMS Auto Fill dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | goleodhjeigcnckfjlfgflcpohmmkapp |
URL Chính Thức | https://chrome.google.com/webstore/detail/ams-auto-fill/goleodhjeigcnckfjlfgflcpohmmkapp |
Mô tả | This is an chrome Extension which helps user to auto fill a form based on json input. |
Kích Thước Tệp | 11.62 KB |
Số Lần Cài Đặt | 174 |
Phiên Bản Hiện Tại | 1.2.2 |
Cập Nhật Lần Cuối | 2016-11-14 |
Ngày Phát Hành | 2016-11-14 |
Đánh Giá | 4.00/5 Tổng số 3 Đánh Giá |
Nhà Phát Triển | Fusion SD |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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" } } |