URL Append param
Append param to current url
什么是URL Append param?
URL Append param是由zzuwzj开发的Chrome扩展程序,该扩展的主要功能是“Append param to current url”。
扩展截图
下载URL Append param扩展crx文件
下载URL Append param扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Append specified url param to current page url and open a new tab with the new url, for example, append "forceVersion=0.0.0" to current url and open a new tab with the new url param. 扩展基本信息
| 名称 | |
| ID | ljiadknbolhlcpaphkjndlkompeemogd |
| 官方URL | https://chrome.google.com/webstore/detail/url-append-param/ljiadknbolhlcpaphkjndlkompeemogd |
| 简介 | Append param to current url |
| 文件大小 | 106 KB |
| 安装次数 | 25 |
| 当前版本 | 1.0 |
| 更新时间 | 2021-02-08 |
| 上架时间 | 2021-02-08 |
| 评分 | 1.50/5 共2次评分 |
| 开发者 | zzuwzj |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://zzuwzj.github.io/chrome-ext-url-add-param/ |
| 支持的语言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "URL Append param",
"description": "Append param to current url",
"version": "1.0",
"manifest_version": 3,
"background": {
"service_worker": "background.js"
},
"permissions": [
"storage",
"activeTab",
"scripting",
"contextMenus",
"tabs"
],
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "\/images\/url_16.png",
"32": "\/images\/url_32.png",
"48": "\/images\/url_48.png",
"128": "\/images\/url_128.png"
}
},
"options_page": "options.html",
"icons": {
"16": "\/images\/url_16.png",
"32": "\/images\/url_32.png",
"48": "\/images\/url_48.png",
"128": "\/images\/url_128.png"
}
} | |