Google Forms Autocomplete

Extension that enables the autocomplete system on Google Forms

Google Forms Autocomplete là gì?

Google Forms Autocomplete là một tiện ích mở rộng Chrome được phát triển bởi Heitor Eleutério, và tính năng chính của nó là "Extension that enables the autocomplete system on Google Forms".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Google Forms Autocomplete

Tải xuống các tệp mở rộng Google Forms Autocomplete dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        Optimize your forms and have a more productive work cycle with a fully customizable forms autocomplete.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Google Forms Autocomplete Google Forms Autocomplete
ID depehdamecodbkkcofaplnnbcoagijdp
URL Chính Thức https://chromewebstore.google.com/detail/google-forms-autocomplete/depehdamecodbkkcofaplnnbcoagijdp
Mô tả Extension that enables the autocomplete system on Google Forms
Kích Thước Tệp 36.46 KB
Số Lần Cài Đặt 326
Phiên Bản Hiện Tại 1.0.0.0
Cập Nhật Lần Cuối 2023-04-02
Ngày Phát Hành 2023-04-02
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển Heitor Eleutério
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Google Forms Autocomplete",
    "description": "Extension that enables the autocomplete system on Google Forms",
    "version": "1.0.0.0",
    "icons": {
        "16": "\/images\/google-forms-16.png",
        "48": "\/images\/google-forms-48.png",
        "128": "\/images\/google-forms-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/docs.google.com\/forms\/*"
            ],
            "js": [
                "\/src\/script.js"
            ],
            "css": [
                "\/src\/style.css"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "matches": [
                "https:\/\/docs.google.com\/*"
            ],
            "resources": [
                "\/src\/classes.js"
            ]
        }
    ],
    "action": {
        "default_popup": "\/src\/page\/index.html",
        "default_title": "Google Forms Autocomplete",
        "default_icon": {
            "16": "\/images\/google-forms-16.png",
            "48": "\/images\/google-forms-48.png",
            "128": "\/images\/google-forms-128.png"
        }
    },
    "permissions": [
        "storage"
    ]
}