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.”。

扩展截图

screenshot
screenshot

下载AMS Auto Fill扩展crx文件

下载AMS Auto Fill扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                                            

扩展基本信息

名称 AMS Auto Fill AMS Auto Fill
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
电子邮箱 [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"
    }
}