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 } ] } |