Strip Query String

Strip Query String

If the URL of a displayed page has a query string, our icon is enabled. Click to reload the page without the query string.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Strip Query String",
  "version": "2.0",
  "manifest_version": 3,
  "description": "If the URL of a displayed page has a query string, our icon is enabled. Click to reload the page without the query string.",
  "background": {
    "service_worker": "background.js"
  },
  "icons": {
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "action": {
    "default_icon": {
      "48": "icon48.png",
      "128": "icon128.png"
    },
    "default_title": "Strip Query String"
  },
  "permissions": [
    "tabs"
  ]
}