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
官方網址 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
電子郵箱 [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"
            ]
        }
    ]
}