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是由iamraghvendrapathak開發的Chrome擴展程式,該擴展的主要功能是“This easy and lightweight extension can be used to add a query string to the any url.”。

擴展截圖

screenshot

下載Add Query String To URL擴展crx文件

下載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
官方網址 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"
            ]
        }
    ]
}