Query params
Provides a user interface to read/write URL query parameters for the currently active tab.
什么是Query params?
Query params是由oliverjash开发的Chrome扩展程序,该扩展的主要功能是“Provides a user interface to read/write URL query parameters for the currently active tab.”。
扩展截图
下载Query params扩展crx文件
下载Query params扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Provides a user interface to read/write URL query parameters for the currently active tab. 扩展基本信息
| 名称 | |
| ID | jgacgeahnbmkhdhldifidddbkneahmal |
| 官方URL | https://chromewebstore.google.com/detail/query-params/jgacgeahnbmkhdhldifidddbkneahmal |
| 简介 | Provides a user interface to read/write URL query parameters for the currently active tab. |
| 文件大小 | 85.04 KB |
| 安装次数 | 942 |
| 当前版本 | 0.0.8 |
| 更新时间 | 2020-07-07 |
| 上架时间 | 2020-07-07 |
| 评分 | 5.00/5 共2次评分 |
| 开发者 | oliverjash |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://github.com/OliverJAsh/chrome-query-params |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Query params",
"description": "Provides a user interface to read\/write URL query parameters for the currently active tab.",
"version": "0.0.8",
"browser_action": {
"default_popup": "popup.html"
},
"permissions": [
"tabs"
],
"manifest_version": 2,
"content_security_policy": "script-src 'self'; object-src 'self'",
"commands": {
"_execute_browser_action": {
"suggested_key": {
"mac": "Command+Shift+P",
"windows": "Ctrl+Shift+P"
}
}
},
"icons": {
"128": "icon.png"
}
} | |