URL Append param
Append param to current url
What is URL Append param?
URL Append param is a Chrome extension developed by zzuwzj, and its main feature is "Append param to current url".
Extension Screenshots
Download URL Append param Extension CRX File
Download URL Append param extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | |
ID | ljiadknbolhlcpaphkjndlkompeemogd |
Official URL | https://chrome.google.com/webstore/detail/url-append-param/ljiadknbolhlcpaphkjndlkompeemogd |
Description | Append param to current url |
File Size | 106 KB |
Installation Count | 25 |
Current Version | 1.0 |
Last Updated | 2021-02-08 |
Publish Date | 2021-02-08 |
Rating | 1.50/5 Total 2 Ratings |
Developer | zzuwzj |
[email protected] | |
Payment Type | free |
Extension Website | https://zzuwzj.github.io/chrome-ext-url-add-param/ |
Supported Languages | 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" } } |