smartfiller-chrome

Learns as you fill forms, you will never have to type the same thing twice.

smartfiller-chrome क्या है?

smartfiller-chrome pablotomasborda द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Learns as you fill forms, you will never have to type the same thing twice."।

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

screenshot

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

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

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

                        Learns as you fill forms, you will never have to type the same thing twice.
Works in your local browser memory, no server no cloud no accounts, no
payments, no subscription, and not filling the information in the form
filler. 
You are the only owner of the information.                    

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

नाम smartfiller-chrome smartfiller-chrome
ID fhlkmhgjnaiojghodnfmaienkjooccah
आधिकारिक URL https://chrome.google.com/webstore/detail/smartfiller-chrome/fhlkmhgjnaiojghodnfmaienkjooccah
विवरण Learns as you fill forms, you will never have to type the same thing twice.
फ़ाइल का आकार 57.55 KB
स्थापना संख्या 117
वर्तमान संस्करण 1.1
अंतिम अपडेट 2018-03-13
प्रकाशन तिथि 2018-03-13
रेटिंग 2.33/5 कुल 3 रेटिंग्स
डेवलपर pablotomasborda
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/PabloBorda/smartfiller-chrome
सहायता पृष्ठ URL https://github.com/PabloBorda/smartfiller-chrome
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "smartfiller-chrome",
    "description": "Learns as you fill forms, you will never have to type the same thing twice.",
    "version": "1.1",
    "permissions": [
        "tabs",
        ""
    ],
    "background": {
        "scripts": [
            "jquery-2.1.0.min.js",
            "main.js",
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "jquery-2.1.0.min.js",
                "contentscript.js"
            ],
            "run_at": "document_idle",
            "all_frames": false
        }
    ],
    "browser_action": {
        "default_icon": "form.png",
        "default_popup": "background.html"
    }
}