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
电子邮箱 [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"
            ]
        }
    ]
}