Autocomplete On!

Stop pages from disabling autocomplete on fields.

Autocomplete On!คืออะไร?

Autocomplete On! เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Tyler Elliott และคุณลักษณะหลักของมันคือ "Stop pages from disabling autocomplete on fields."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Autocomplete On!

ดาวน์โหลดไฟล์ส่วนขยาย Autocomplete On! ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

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

                        Turn on autocomplete and keep it on. 

Set an exclude list for pages that you don't want autocomplete forced on, e.g. gmail which has its own autocomplete. Or set an include list for a set of pages you only want to force. Or even combine both lists for even finer grain control.

Release Notes:
1.0.8 - Save options bug fix
1.0.7 - Update icons to show extension is active
1.0.6 - Help chrome figure out what type of field it is autocompleting
1.0.5 - Better handling of excluded URL patterns
1.0.4 - More monitoring of input fields that are added after a page loads.
1.0.3 - Update extension icon for better visibility on dark themes.
1.0.2 - Ability to give a site allow list to only run the extension on.
1.0.1 - Trigger scripts on jquery and turbolinks load events.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Autocomplete On! Autocomplete On!
ID kkffidhhikbopjomeeaihconieppiaan
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/autocomplete-on/kkffidhhikbopjomeeaihconieppiaan
คำอธิบาย Stop pages from disabling autocomplete on fields.
ขนาดไฟล์ 9.67 KB
จำนวนการติดตั้ง 9,697
เวอร์ชันปัจจุบัน 1.0.8
อัปเดตครั้งล่าสุด 2021-04-26
วันที่เผยแพร่ 2020-06-06
คะแนน 3.37/5 รวมทั้งหมด 38 คะแนน
ผู้พัฒนา Tyler Elliott
อีเมล [email protected]
ประเภทการชำระเงิน free
URL หน้าช่วยเหลือ https://github.com/tylercal/autocomplete-on/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Autocomplete On!",
    "description": "Stop pages from disabling autocomplete on fields.",
    "version": "1.0.8",
    "offline_enabled": true,
    "icons": {
        "16": "images\/logo-16.png",
        "48": "images\/logo-48.png",
        "128": "images\/logo-128.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "images\/logo-16.png",
            "48": "images\/logo-48.png",
            "128": "images\/logo-128.png"
        }
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "all_frames": true,
            "matches": [
                ""
            ],
            "js": [
                "script.js"
            ]
        }
    ]
}