Add Query String To URL

This easy and lightweight extension can be used to add a query string to the any url.

Add Query String To URL là gì?

Add Query String To URL là một tiện ích mở rộng Chrome được phát triển bởi iamraghvendrapathak, và tính năng chính của nó là "This easy and lightweight extension can be used to add a query string to the any url.".

Ả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 Add Query String To URL

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

                        Tired of adding query string to the url? This easy and lightweight extension helps you to add a query string to any url. All you need is to turn on the toggle.                    

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

Tên Add Query String To URL Add Query String To URL
ID plakklnddafbgeodimojmfgneiadigkp
URL Chính Thức https://chromewebstore.google.com/detail/add-query-string-to-url/plakklnddafbgeodimojmfgneiadigkp
Mô tả This easy and lightweight extension can be used to add a query string to the any url.
Kích Thước Tệp 7 KB
Số Lần Cài Đặt 36
Phiên Bản Hiện Tại 0.0.1
Cập Nhật Lần Cuối 2022-10-25
Ngày Phát Hành 2022-10-24
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển iamraghvendrapathak
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "author": "Raghvendra Pathak",
    "name": "Add Query String To URL",
    "short_name": "AQSTU",
    "description": "This easy and lightweight extension can be used to add a query string to the any url.",
    "version": "0.0.1",
    "manifest_version": 3,
    "action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html",
        "default_title": "Add Query String To URL"
    },
    "icons": {
        "48": "icon.png"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "background.js"
            ]
        }
    ]
}