Inspect and view changes in Pretty Params source codes across current and past versions
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"manifest_version": 3,
"name": "Pretty Params",
"description": "Manage URL params and query strings in a demure way",
"version": "0.5.0",
"options_ui": {
"page": "options.html",
"open_in_tab": true
},
"action": {
"default_icon": "icon.png",
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content_script.js"
]
}
],
"host_permissions": [
"<all_urls>"
],
"background": {
"type": "module",
"service_worker": "service_worker.js"
},
"permissions": [
"storage",
"tabs",
"tabGroups"
],
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}