URL Form Filler

Prepopulate a form from parameters in URL based on form-field ids

Was ist URL Form Filler?

URL Form Filler ist eine Chrome-Erweiterung, die von https://drupaltonight.com entwickelt wurde, und ihr Hauptmerkmal ist "Prepopulate a form from parameters in URL based on form-field ids".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

URL Form Filler-Erweiterungs-CRX-Datei herunterladen

Laden Sie URL Form Filler-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Most of the order tracking websites and websites with search boxes are used frequently with the same values as the default values. But not every website supports pre-populating them with values from URLs. 

This tiny chrome Extension just does that. You can use either the id or the name attribute of the form-field in the url to pre-populate the values. 

An example url https://in.yahoo.com/?p=is%20yahoo%20news%20any%20good will populate the form element with either the ID or the name attribute equal to "p" with the value "is yahoo news any good"                    

Grundlegende Informationen zur Erweiterung

Name URL Form Filler URL Form Filler
ID gnojogfcdagpaailidoeiiepgdkehbdc
Offizielle URL https://chromewebstore.google.com/detail/url-form-filler/gnojogfcdagpaailidoeiiepgdkehbdc
Beschreibung Prepopulate a form from parameters in URL based on form-field ids
Dateigröße 125 KB
Installationsanzahl 300
Aktuelle Version 0.0.1
Letztes Update 2014-10-07
Veröffentlichungsdatum 2014-10-07
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler https://drupaltonight.com
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "URL Form Filler",
    "short_name": "UFF",
    "version": "0.0.1",
    "manifest_version": 2,
    "default_locale": "en",
    "author": "Gokul N K",
    "description": "Prepopulate a form from parameters in URL based on form-field ids",
    "homepage_url": "http:\/\/www.gokulnk.blogspot.com",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "background": {
        "scripts": [
            "src\/bg\/background.js"
        ],
        "persistent": false
    },
    "page_action": {
        "default_icon": "icons\/icon20.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/jquery\/jquery.js",
                "src\/inject\/inject.js"
            ],
            "run_at": "document_end"
        }
    ]
}