Google Forms Autocomplete

Extension that enables the autocomplete system on Google Forms

Google Forms Autocompleteとは何ですか?

Google Forms AutocompleteはHeitor Eleutérioによって開発されたChromeの拡張機能で、その主な機能は「Extension that enables the autocomplete system on Google Forms」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot

Google Forms Autocomplete拡張機能のCRXファイルをダウンロード

Google Forms Autocomplete拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

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

拡張機能の基本情報

名前 Google Forms Autocomplete Google Forms Autocomplete
ID depehdamecodbkkcofaplnnbcoagijdp
公式URL https://chromewebstore.google.com/detail/google-forms-autocomplete/depehdamecodbkkcofaplnnbcoagijdp
説明 Extension that enables the autocomplete system on Google Forms
ファイルサイズ 36.46 KB
インストール数 326
現在のバージョン 1.0.0.0
最終更新日 2023-04-02
公開日 2023-04-02
評価 5.00/5 合計 1 レビュー
開発者 Heitor Eleutério
Eメール [email protected]
支払い方法 free
対応言語 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"
    ]
}