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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
    }
}