AMS Auto Fill
This is an chrome Extension which helps user to auto fill a form based on json input.
什麼是AMS Auto Fill?
AMS Auto Fill是由Fusion SD開發的Chrome擴展程式,該擴展的主要功能是“This is an chrome Extension which helps user to auto fill a form based on json input.”。
擴展截圖
下載AMS Auto Fill擴展crx文件
下載AMS Auto Fill擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
擴展基本資訊
| 名稱 | |
| ID | goleodhjeigcnckfjlfgflcpohmmkapp |
| 官方網址 | https://chrome.google.com/webstore/detail/ams-auto-fill/goleodhjeigcnckfjlfgflcpohmmkapp |
| 簡介 | This is an chrome Extension which helps user to auto fill a form based on json input. |
| 檔案大小 | 11.62 KB |
| 安裝次數 | 174 |
| 目前版本 | 1.2.2 |
| 更新時間 | 2016-11-14 |
| 上架時間 | 2016-11-14 |
| 評分 | 4.00/5 共 3 次評分 |
| 開發者 | Fusion SD |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 支援的語言 | 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"
}
} | |