smartfiller-chrome

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

ما هو smartfiller-chrome؟

smartfiller-chrome هو إضافة Chrome تم تطويرها بواسطة pablotomasborda، والميزة الرئيسية لها هي "Learns as you fill forms, you will never have to type the same thing twice.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة smartfiller-chrome

قم بتنزيل ملفات الامتداد smartfiller-chrome بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح 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
عنوان صفحة المساعدة 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"
    }
}