AMS Auto Fill

This is an chrome Extension which helps user to auto fill a form based on json input.

What is AMS Auto Fill?

AMS Auto Fill is a Chrome extension developed by Fusion SD, and its main feature is "This is an chrome Extension which helps user to auto fill a form based on json input.".

Extension Screenshots

screenshot
screenshot

Download AMS Auto Fill Extension CRX File

Download AMS Auto Fill extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                                            

Extension Basic Information

Name AMS Auto Fill AMS Auto Fill
ID goleodhjeigcnckfjlfgflcpohmmkapp
Official URL https://chrome.google.com/webstore/detail/ams-auto-fill/goleodhjeigcnckfjlfgflcpohmmkapp
Description This is an chrome Extension which helps user to auto fill a form based on json input.
File Size 11.62 KB
Installation Count 174
Current Version 1.2.2
Last Updated 2016-11-14
Publish Date 2016-11-14
Rating 4.00/5 Total 3 Ratings
Developer Fusion SD
Email [email protected]
Payment Type free
Supported Languages 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"
    }
}