百度搜索净化助手

百度搜索净化助手

百度搜索页面去广告,屏蔽广告。点击图标显示/屏蔽广告

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "百度搜索净化助手",
  "version": "0.0.14",
  "description": "百度搜索页面去广告,屏蔽广告。点击图标显示/屏蔽广告",
  "icons": {
    "128": "img/logo (1).png"
  },
  "permissions": [
    "tabs",
    "storage"
  ],
  "browser_action": {
    "default_icon": "img/logo (1).png",
    "default_title": "点击图标显示/屏蔽广告"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.baidu.com/*"
      ],
      "js": [
        "js/content.js"
      ],
      "run_at": "document_start"
    }
  ],
  "background": {
    "scripts": [
      "js/background.js"
    ]
  }
}