URL Form Filler

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

URL Form Filler क्या है?

URL Form Filler https://drupaltonight.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Prepopulate a form from parameters in URL based on form-field ids"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में URL Form Filler एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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"                    

एक्सटेंशन की मूल जानकारी

नाम URL Form Filler URL Form Filler
ID gnojogfcdagpaailidoeiiepgdkehbdc
आधिकारिक URL https://chromewebstore.google.com/detail/url-form-filler/gnojogfcdagpaailidoeiiepgdkehbdc
विवरण Prepopulate a form from parameters in URL based on form-field ids
फ़ाइल का आकार 125 KB
स्थापना संख्या 300
वर्तमान संस्करण 0.0.1
अंतिम अपडेट 2014-10-07
प्रकाशन तिथि 2014-10-07
रेटिंग 5.00/5 कुल 2 रेटिंग्स
डेवलपर https://drupaltonight.com
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ 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"
        }
    ]
}