search-engine-filter
在百度谷歌等搜索引擎的搜索结果中,根据自定义的过滤规则,过滤掉来自特定网站的搜索结果
search-engine-filterคืออะไร?
search-engine-filter เป็นส่วนขยายของ Chrome ที่พัฒนาโดย kosmgco และคุณลักษณะหลักของมันคือ "在百度谷歌等搜索引擎的搜索结果中,根据自定义的过滤规则,过滤掉来自特定网站的搜索结果"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย search-engine-filter
ดาวน์โหลดไฟล์ส่วนขยาย search-engine-filter ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
在百度谷歌等搜索引擎的搜索结果中,根据自定义的过滤规则,过滤掉来自特定网站的搜索结果
比如
csdn.net
baijiahao.baidu.com
...
update 2019-01-23
添加屏蔽百度右侧广告开关
update 2018-12-27
1. 增加提示性文字
2. 修改运行网站match_url
3. 修复部分bug
update 2018-12-24
1. 显示屏蔽数量与结果
2. 直接在popup页面打开管理界面,不需要右键选择options
3. 修复部分bug ข้อมูลพื้นฐานของส่วนขยาย
| ชื่อ | |
| ID | icdjfaaeckchacbbekgeapggeafboaca |
| URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/search-engine-filter/icdjfaaeckchacbbekgeapggeafboaca |
| คำอธิบาย | 在百度谷歌等搜索引擎的搜索结果中,根据自定义的过滤规则,过滤掉来自特定网站的搜索结果 |
| ขนาดไฟล์ | 42.71 KB |
| จำนวนการติดตั้ง | 323 |
| เวอร์ชันปัจจุบัน | 1.0.11 |
| อัปเดตครั้งล่าสุด | 2019-01-23 |
| วันที่เผยแพร่ | 2019-01-23 |
| คะแนน | 4.15/5 รวมทั้งหมด 13 คะแนน |
| ผู้พัฒนา | kosmgco |
| อีเมล | [email protected] |
| ประเภทการชำระเงิน | free |
| ภาษาที่รองรับ | zh-CN |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "search-engine-filter",
"description": "\u5728\u767e\u5ea6\u8c37\u6b4c\u7b49\u641c\u7d22\u5f15\u64ce\u7684\u641c\u7d22\u7ed3\u679c\u4e2d\uff0c\u6839\u636e\u81ea\u5b9a\u4e49\u7684\u8fc7\u6ee4\u89c4\u5219\uff0c\u8fc7\u6ee4\u6389\u6765\u81ea\u7279\u5b9a\u7f51\u7ad9\u7684\u641c\u7d22\u7ed3\u679c",
"version": "1.0.11",
"browser_action": {
"default_icon": "icon.png",
"default_popup": "popup.html"
},
"background": {
"scripts": [
"background.js"
]
},
"permissions": [
"activeTab",
"storage",
"https:\/\/www.google.com\/*",
"https:\/\/www.baidu.com\/*",
"https:\/\/cn.bing.com\/*",
"downloads"
],
"icons": {
"48": "icon.png"
},
"options_page": "options.html",
"content_scripts": [
{
"matches": [
"https:\/\/www.google.com\/*",
"https:\/\/www.baidu.com\/*",
"https:\/\/cn.bing.com\/*"
],
"js": [
"jquery.js",
"filter.js"
],
"run_at": "document_end"
}
]
} | |