便捷工具

baidu,知乎等等广告去除。csdn免登录复制代码块。页面数据自动填充(插件选项里配置,浏览器左上角点击扩展程序图标,点击此插件后面针状图标固定插件到工具栏。然后右击此插件选择选项进入选项页面)。一些网站外部页面免确认跳转
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "name": "__MSG_extName__",
  "description": "__MSG_extDes__",
  "version": "1.3",
  "manifest_version": 3,
  "default_locale": "zh_CN",
  "background": {
    "service_worker": "sw.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://blog.csdn.net/*"
      ],
      "run_at": "document_start",
      "js": [
        "commoncontent.js"
      ],
      "css": [
        "commoncss.css"
      ]
    },
    {
      "matches": [
        "https://link.csdn.net/*"
      ],
      "run_at": "document_start",
      "js": [
        "csdn/index.js"
      ]
    },
    {
      "matches": [
        "https://*.baidu.com/*"
      ],
      "js": [
        "baidu/index.js"
      ],
      "css": [
        "baidu/style.css"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "https://*.zhihu.com/*"
      ],
      "css": [
        "zhihu/style.css"
      ],
      "js": [
        "zhihu/index.js"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "https://*.163.com/*",
        "http://*.163.com/*"
      ],
      "css": [
        "163/style.css"
      ],
      "js": [
        "163/index.js"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "https://*.csdn.net/*"
      ],
      "css": [
        "csdn/style.css"
      ],
      "js": [
        "csdn/index.js"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "https://*.cnblogs.com/*"
      ],
      "css": [
        "cnblogs/style.css"
      ],
      "js": [
        "cnblogs/index.js"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "https://*.oschina.net/*"
      ],
      "run_at": "document_start",
      "css": [
        "oschina/style.css"
      ],
      "js": [
        "oschina/index.js"
      ]
    },
    {
      "matches": [
        "https://*.juejin.cn/*"
      ],
      "run_at": "document_start",
      "css": [
        "juejin/style.css"
      ],
      "js": [
        "juejin/index.js"
      ]
    },
    {
      "matches": [
        "https://*.jianshu.com/*"
      ],
      "run_at": "document_start",
      "css": [
        "jianshu/style.css"
      ],
      "js": [
        "jianshu/index.js"
      ]
    },
    {
      "matches": [
        "https://*.w3school.com.cn/*"
      ],
      "css": [
        "w3school/style.css"
      ],
      "js": [
        "w3school/index.js"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "https://*.runoob.com/*"
      ],
      "css": [
        "runoob/style.css"
      ],
      "js": [
        "runoob/index.js"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "https://*.it1352.com/*"
      ],
      "css": [
        "it1352/style.css"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "js": [
        "common.js"
      ],
      "css": [
        "googleads.css"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "pagehandler.js"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "storage",
    "activeTab",
    "scripting",
    "tabs"
  ],
  "action": {
    "default_icon": {
      "16": "/images/EasyToolbox_16.png",
      "32": "/images/EasyToolbox_32.png",
      "48": "/images/EasyToolbox_48.png",
      "128": "/images/EasyToolbox_128.png"
    }
  },
  "icons": {
    "16": "/images/EasyToolbox_16.png",
    "32": "/images/EasyToolbox_32.png",
    "48": "/images/EasyToolbox_48.png",
    "128": "/images/EasyToolbox_128.png"
  },
  "options_page": "index.html",
  "web_accessible_resources": [
    {
      "resources": [
        "pagejs.js",
        "lucky.js"
      ],
      "matches": [
        "https://*/*",
        "http://*/*"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}