Cleanner

Cleanner

本扩展用于屏蔽网页中的流量引导区域。 支持网页白名单和网站白名单,可不屏蔽某些网页和网站。 白名单支持*通配符。

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Cleanner",
  "version": "1.2resigned1",
  "author": "Werner",
  "description": "屏蔽网页中的流量引导区域。",
  "homepage_url": "https://github.com/werner-wiki/GraduationProject",
  "applications": {
    "gecko": {
      "id": "[email protected]"
    }
  },
  "icons": {
    "24": "icons/broom_black_24px.png",
    "32": "icons/broom_black_32px.png"
  },
  "permissions": [
    "activeTab",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "browser_style": true,
    "default_icon": "icons/broom_black_32px.png",
    "default_title": "屏蔽网页中讨厌的流量引导区域",
    "default_popup": "popup/popup.html"
  },
  "options_ui": {
    "page": "options/options.html",
    "open_in_tab": true
  }
}