Add Query String To URL

Add Query String To URL

This easy and lightweight extension can be used to add a query string to the any url.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "author": "Raghvendra Pathak",
  "name": "Add Query String To URL",
  "short_name": "AQSTU",
  "description": "This easy and lightweight extension can be used to add a query string to the any url.",
  "version": "0.0.1",
  "manifest_version": 3,
  "action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html",
    "default_title": "Add Query String To URL"
  },
  "icons": {
    "48": "icon.png"
  },
  "permissions": [
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "background.js"
      ]
    }
  ]
}