Faceblock

Block Facebook posts about stuff you don't like

Faceblockとは何ですか?

FaceblockはOleś Gergunによって開発されたChromeの拡張機能で、その主な機能は「Block Facebook posts about stuff you don't like」です。

拡張機能のスクリーンショット

screenshot

Faceblock拡張機能のCRXファイルをダウンロード

Faceblock拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Faceblock is an extension for Google Chrome that blocks posts about stuff you don't like in your Facebook Newsfeed. Add a name of a politician, pop star or somebody else you are annoyed reading about — and you won't see any more posts mentioning them. 

The program shows you how many posts of a given keyword were removed and how many were blocked in general. Also, it's easy to manage a block list and turn Faceblock off and on from the user interface.

(Please reload your Facebook page after install)

Have a great time! :)                    

拡張機能の基本情報

名前 Faceblock Faceblock
ID aljnhamaajogdndmfnedoodpoofadkph
公式URL https://chrome.google.com/webstore/detail/faceblock/aljnhamaajogdndmfnedoodpoofadkph
説明 Block Facebook posts about stuff you don't like
ファイルサイズ 2.52 MB
インストール数 72
現在のバージョン 2.1
最終更新日 2021-03-13
公開日 2016-03-23
評価 4.60/5 合計 5 レビュー
開発者 Oleś Gergun
Eメール [email protected]
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Faceblock",
    "version": "2.1",
    "manifest_version": 2,
    "offline_enabled": true,
    "description": "Block Facebook posts about stuff you don't like",
    "icons": {
        "16": "icons\/16x16.png",
        "48": "icons\/48x48.png",
        "128": "icons\/128x128.png"
    },
    "browser_action": {
        "default_icon": {
            "19": "icons\/19x19.png",
            "38": "icons\/38x38.png"
        },
        "default_title": "Faceblock",
        "default_popup": "browseraction\/popup.html"
    },
    "permissions": [
        "storage",
        "debugger",
        "webNavigation"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.facebook.com\/*",
                "https:\/\/www.facebook.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com 'unsafe-eval'; object-src 'self';"
}