param appender
appends a configurable parameter to the url on url change
What is param appender?
param appender is a Chrome extension developed by stupid cat, and its main feature is "appends a configurable parameter to the url on url change".
Extension Screenshots
Download param appender Extension CRX File
Download param appender 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
appends a configurable parameter to the url on url change. the affected urls can be specified using a regex configuration.
Extension Basic Information
Name | param appender |
ID | dpodflepnifmnifholnajjffjmkolaae |
Official URL | https://chromewebstore.google.com/detail/param-appender/dpodflepnifmnifholnajjffjmkolaae |
Description | appends a configurable parameter to the url on url change |
File Size | 44.63 KB |
Installation Count | 77 |
Current Version | 1.5 |
Last Updated | 2020-08-31 |
Publish Date | 2020-03-08 |
Rating | 5.00/5 Total 1 Ratings |
Developer | stupid cat |
[email protected] | |
Payment Type | free |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "param appender", "short_name": "pappender", "version": "1.5", "description": "appends a configurable parameter to the url on url change", "manifest_version": 2, "background": { "scripts": [ "scripts\/background.js" ] }, "permissions": [ "http:\/\/*\/*", "https:\/\/*\/*", "storage", "webRequest", "webRequestBlocking" ], "browser_action": { "default_popup": "views\/popup.html", "default_icons": { "16": "icons\/icon16.png", "32": "icons\/icon32.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" } }, "options_page": "views\/options.html", "icons": { "16": "icons\/icon16.png", "32": "icons\/icon32.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'" } |