Simple Form Fill

Enter text into input fields by choosing items from the context menu or using the optional autocomplete.

Simple Form Fill क्या है?

Simple Form Fill Sebastian Blask द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Enter text into input fields by choosing items from the context menu or using the optional autocomplete."।

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        Simple Form Fill
================
Enter text into input fields by choosing configured items from the context menu
or using the optional autocomplete (not autofill) which suggest items based on
typed input.

New items can be added through the context menu while having some text selected
or in the extension's preferences.

Screenshot Descriptions
-----------------------

 - Configure the items you can fill into text fields in the add-on preferences (get there directly by clicking the toolbar button or through the context menu)
 - Or add items from selected text using the context menu
 - Use the context menu on input fields to fill one of the configured items
 - Enable autocomplete in the preferences to get a list of matching items to choose from when typing in input fields. You can configure comments in the preferences - they are matched against but removed from the item before filling

Feedback
--------

You can report bugs or make feature requests on https://github.com/sblask/webextension-simple-form-fill

Patches are welcome.                    

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

नाम Simple Form Fill Simple Form Fill
ID filmkodmbabpfkfhoekpgfpankdlajmf
आधिकारिक URL https://chromewebstore.google.com/detail/simple-form-fill/filmkodmbabpfkfhoekpgfpankdlajmf
विवरण Enter text into input fields by choosing items from the context menu or using the optional autocomplete.
फ़ाइल का आकार 248 KB
स्थापना संख्या 13,310
वर्तमान संस्करण 2.2.1
अंतिम अपडेट 2021-03-28
प्रकाशन तिथि 2017-11-10
रेटिंग 4.58/5 कुल 31 रेटिंग्स
डेवलपर Sebastian Blask
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/sblask/webextension-simple-form-fill
सहायता पृष्ठ URL https://github.com/sblask/webextension-simple-form-fill
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "author": "Sebastian Blask",
    "background": {
        "scripts": [
            "browser-polyfill.js",
            "util.js",
            "background.js"
        ]
    },
    "browser_action": {
        "browser_style": false,
        "default_popup": "options\/options.html",
        "default_title": "Simple Form Fill"
    },
    "description": "Enter text into input fields by choosing items from the context menu or using the optional autocomplete.",
    "homepage_url": "https:\/\/github.com\/sblask\/webextension-simple-form-fill",
    "icons": {
        "16": "icon-16x16.png",
        "32": "icon-32x32.png",
        "48": "icon-48x48.png",
        "64": "icon-64x64.png",
        "128": "icon-128x128.png"
    },
    "manifest_version": 2,
    "name": "Simple Form Fill",
    "options_ui": {
        "page": "options\/options.html"
    },
    "permissions": [
        "",
        "contextMenus",
        "storage"
    ],
    "version": "2.2.1"
}