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
官方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"
            ]
        }
    ]
}