Topic Blocker
Filter out Facebook posts by topic.
What is Topic Blocker?
Topic Blocker is a Chrome extension developed by Adam, and its main feature is "Filter out Facebook posts by topic.".
Extension Screenshots
Download Topic Blocker Extension CRX File
Download Topic Blocker extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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!
Extension Basic Information
Name | |
ID | nljofmjkcfcllbffocmfddhmapchciaj |
Official URL | https://chromewebstore.google.com/detail/topic-blocker/nljofmjkcfcllbffocmfddhmapchciaj |
Description | Filter out Facebook posts by topic. |
File Size | 51.05 KB |
Installation Count | 73 |
Current Version | 0.0.1 |
Last Updated | 2014-07-10 |
Publish Date | 2014-07-10 |
Rating | 5.00/5 Total 9 Ratings |
Developer | Adam |
Payment Type | free |
Supported Languages | 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 } ] } |