Query Inject

Utility to inject query parameters before the page loads

Query Injectとは何ですか?

Query Injectはmatthew - developerによって開発されたChromeの拡張機能で、その主な機能は「Utility to inject query parameters before the page loads」です。

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

screenshot

Query Inject拡張機能のCRXファイルをダウンロード

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

拡張機能の使用方法

                        Utility to inject query parameters before the page loads                    

拡張機能の基本情報

名前 Query Inject Query Inject
ID cjglgegdmjocojbgocdjnpkkeongjmlg
公式URL https://chromewebstore.google.com/detail/query-inject/cjglgegdmjocojbgocdjnpkkeongjmlg
説明 Utility to inject query parameters before the page loads
ファイルサイズ 31.33 KB
インストール数 70
現在のバージョン 1.1.0
最終更新日 2023-02-22
公開日 2021-02-22
評価 5.00/5 合計 1 レビュー
開発者 matthew - developer
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/matthewnitschke/query-inject
ヘルプページのURL https://github.com/matthewnitschke/query-inject/issues
対応言語 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Query Inject",
    "version": "1.1.0",
    "icons": {
        "16": "icons\/16-enabled.png",
        "48": "icons\/48-enabled.png",
        "128": "icons\/128-enabled.png"
    },
    "manifest_version": 3,
    "options_page": "src\/options\/index.html",
    "action": {
        "default_title": "Query Inject",
        "default_popup": "src\/options\/index.html"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                ""
            ],
            "js": [
                "src\/inject\/inject.js"
            ]
        }
    ]
}