Topic Blocker
Filter out Facebook posts by topic.
什么是Topic Blocker?
Topic Blocker是由Adam开发的Chrome扩展程序,该扩展的主要功能是“Filter out Facebook posts by topic.”。
扩展截图
下载Topic Blocker扩展crx文件
下载Topic Blocker扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Are you tired of reading posts in your Facebook News Feed about a specific (probably controversial) topic from all 1000 of your closest friends/enemies/acquaintances/pets/phrenologists?
Good news! When you get tired of a certain topic, just use Topic Blocker to block it! 扩展基本信息
| 名称 | |
| ID | nljofmjkcfcllbffocmfddhmapchciaj |
| 官方URL | https://chromewebstore.google.com/detail/topic-blocker/nljofmjkcfcllbffocmfddhmapchciaj |
| 简介 | Filter out Facebook posts by topic. |
| 文件大小 | 51.05 KB |
| 安装次数 | 73 |
| 当前版本 | 0.0.1 |
| 更新时间 | 2014-07-10 |
| 上架时间 | 2014-07-10 |
| 评分 | 5.00/5 共9次评分 |
| 开发者 | Adam |
| 付费类型 | free |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "__MSG_appName__",
"version": "0.0.1",
"manifest_version": 2,
"description": "__MSG_appDescription__",
"icons": {
"16": "images\/16.png",
"128": "images\/128.png"
},
"permissions": [
"storage"
],
"default_locale": "en",
"background": {
"scripts": [
"scripts\/chromereload.js",
"scripts\/background.js"
]
},
"browser_action": {
"default_icon": {
"19": "images\/19.png",
"38": "images\/38.png"
},
"default_title": "Topic Blocker",
"default_popup": "popup.html"
},
"options_page": "options.html",
"content_scripts": [
{
"matches": [
"http:\/\/www.facebook.com\/*",
"https:\/\/www.facebook.com\/*"
],
"css": [
"styles\/main.css"
],
"js": [
"scripts\/contentscript2.js"
],
"run_at": "document_end",
"all_frames": false
}
]
} | |