Query Inject

Utility to inject query parameters before the page loads

Query Inject là gì?

Query Inject là một tiện ích mở rộng Chrome được phát triển bởi matthew - developer, và tính năng chính của nó là "Utility to inject query parameters before the page loads".

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

screenshot

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

Tải xuống các tệp mở rộng Query Inject 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

                        Utility to inject query parameters before the page loads                    

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

Tên Query Inject Query Inject
ID cjglgegdmjocojbgocdjnpkkeongjmlg
URL Chính Thức https://chromewebstore.google.com/detail/query-inject/cjglgegdmjocojbgocdjnpkkeongjmlg
Mô tả Utility to inject query parameters before the page loads
Kích Thước Tệp 31.33 KB
Số Lần Cài Đặt 70
Phiên Bản Hiện Tại 1.1.0
Cập Nhật Lần Cuối 2023-02-22
Ngày Phát Hành 2021-02-22
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển matthew - developer
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/matthewnitschke/query-inject
URL Trang Trợ Giúp https://github.com/matthewnitschke/query-inject/issues
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}