AMS Auto Fill

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

Hvad er AMS Auto Fill?

AMS Auto Fill er en Chrome-udvidelse udviklet af Fusion SD, og dens hovedfunktion er "This is an chrome Extension which helps user to auto fill a form based on json input.".

Udvidelsesskærmbilleder

screenshot
screenshot

Download AMS Auto Fill-udvidelses-CRX-fil

Download AMS Auto Fill-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                                            

Grundlæggende oplysninger om udvidelsen

Navn AMS Auto Fill AMS Auto Fill
ID goleodhjeigcnckfjlfgflcpohmmkapp
Officiel URL https://chrome.google.com/webstore/detail/ams-auto-fill/goleodhjeigcnckfjlfgflcpohmmkapp
Beskrivelse This is an chrome Extension which helps user to auto fill a form based on json input.
Filstørrelse 11.62 KB
Antal Installationer 174
Nuværende Version 1.2.2
Senest Opdateret 2016-11-14
Udgivelsesdato 2016-11-14
Bedømmelse 4.00/5 Samlet 3 Bedømmelser
Udvikler Fusion SD
E-mail [email protected]
Betalingsmetode free
Understøttede Sprog 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"
    }
}