Washbaidu

Washbaidu

优化百度搜索界面,移除过度广告,消除注意力干扰,支持样式主题,提升百度体验

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Washbaidu",
  "description": "优化百度搜索界面,移除过度广告,消除注意力干扰,支持样式主题,提升百度体验",
  "version": "1.9.9",
  "manifest_version": 3,
  "web_accessible_resources": [
    {
      "resources": [
        "searchlogo.png",
        "default_logo.png"
      ],
      "matches": [
        "https://*.baidu.com/*"
      ]
    }
  ],
  "content_scripts": [
    {
      "run_at": "document_start",
      "css": [
        "themes/totoro/static.css"
      ],
      "matches": [
        "*://*.baidu.com/*"
      ]
    },
    {
      "run_at": "document_end",
      "js": [
        "themes/totoro/render.js"
      ],
      "matches": [
        "*://*.baidu.com/*"
      ]
    }
  ],
  "icons": {
    "16": "icons/logo16.png",
    "32": "icons/logo32.png",
    "48": "icons/logo48.png",
    "64": "icons/logo64.png",
    "128": "icons/logo128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_title": "WashBaidu",
    "default_popup": "popup.html"
  },
  "permissions": [
    "storage",
    "scripting"
  ],
  "host_permissions": [
    "https://*.baidu.com/"
  ],
  "externally_connectable": {
    "matches": [
      "*://*.starfury.tech/*",
      "*://*.toast.pub/*"
    ]
  }
}