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 |
公式URL | 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 |
Eメール | [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" } } |