百度广告屏蔽

百度广告屏蔽

屏蔽百度线上产品页面广告。点击扩展图标,可当书签用,省去每次输入百度地址的麻烦。如有疑问欢迎咨询开发者。

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "百度广告屏蔽",
  "version": "3.0",
  "short_name": "屏蔽百度广告Chrome扩展程序",
  "description": "屏蔽百度线上产品页面广告。点击扩展图标,可当书签用,省去每次输入百度地址的麻烦。如有疑问欢迎咨询开发者。",
  "background": {
    "scripts": [
      "res/js/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.baidu.com/*",
        "http://*.baidu.com/*",
        "https://*.baidu.com/*"
      ],
      "css": [
        "res/css/style.css"
      ],
      "js": [
        "res/js/main.js"
      ],
      "run_at": "document_start"
    }
  ],
  "permissions": [
    "https://*.baidu.com/*",
    "tabs"
  ],
  "icons": {
    "16": "res/pic/icon_16.png",
    "48": "res/pic/icon_48.png",
    "128": "res/pic/icon_128.png"
  },
  "browser_action": {
    "name": "百度广告屏蔽--by HKing",
    "default_icon": "res/pic/icon_128.png",
    "default_popup": "res/popup.html"
  },
  "manifest_version": 2
}