URL参数对比

URL参数对比

用于简单快捷的对比单个或多个URL地址的参数,也可用于修改参数

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "URL参数对比",
  "description": "用于简单快捷的对比单个或多个URL地址的参数,也可用于修改参数",
  "version": "1.2",
  "permissions": [
    "tabs",
    "contextMenus"
  ],
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "browser_action": {
    "default_popup": "popup.html",
    "default_icon": "icon48.png"
  },
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "background": {
    "scripts": [
      "js/background.js"
    ]
  }
}