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คืออะไร?

Add Query String To URL เป็นส่วนขยายของ Chrome ที่พัฒนาโดย iamraghvendrapathak และคุณลักษณะหลักของมันคือ "This easy and lightweight extension can be used to add a query string to the any url."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Add Query String To URL

ดาวน์โหลดไฟล์ส่วนขยาย Add Query String To URL ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Add Query String To URL Add Query String To URL
ID plakklnddafbgeodimojmfgneiadigkp
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/add-query-string-to-url/plakklnddafbgeodimojmfgneiadigkp
คำอธิบาย This easy and lightweight extension can be used to add a query string to the any url.
ขนาดไฟล์ 7 KB
จำนวนการติดตั้ง 36
เวอร์ชันปัจจุบัน 0.0.1
อัปเดตครั้งล่าสุด 2022-10-25
วันที่เผยแพร่ 2022-10-24
คะแนน 5.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา iamraghvendrapathak
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ 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"
            ]
        }
    ]
}