Query params

Query params

Provides a user interface to read/write URL query parameters for the currently active tab.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Query params",
  "description": "Provides a user interface to read/write URL query parameters for the currently active tab.",
  "version": "0.0.8",
  "browser_action": {
    "default_popup": "popup.html"
  },
  "permissions": [
    "tabs"
  ],
  "manifest_version": 2,
  "content_security_policy": "script-src 'self'; object-src 'self'",
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "mac": "Command+Shift+P",
        "windows": "Ctrl+Shift+P"
      }
    }
  },
  "icons": {
    "128": "icon.png"
  }
}