Fill form get

Fill form with get parameters

Fill form get क्या है?

Fill form get https://digitalgg.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Fill form with get parameters"।

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

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

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

                        Fill form with get parameters from url.
For example: website (example.com) contains form with two fields (name, surname) and we know that input field name is "name" and "surname", so we can set get parameters to fill form.
For example: if url will be example.com?name=test, the form input with name "name" will be filled with value test.                    

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

नाम Fill form get Fill form get
ID hlpbbilciikoohloghfnlofmgekenkpl
आधिकारिक URL https://chromewebstore.google.com/detail/fill-form-get/hlpbbilciikoohloghfnlofmgekenkpl
विवरण Fill form with get parameters
फ़ाइल का आकार 32.72 KB
स्थापना संख्या 22
वर्तमान संस्करण 1.0
अंतिम अपडेट 2016-05-07
प्रकाशन तिथि 2016-05-07
डेवलपर https://digitalgg.com
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Fill form get",
    "version": "1.0",
    "manifest_version": 2,
    "description": "Fill form with get parameters",
    "content_scripts": [
        {
            "js": [
                "jquery.min.js",
                "content_script.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "http:\/\/*\/*"
    ]
}