Hide Facebook Likes

Hide other people's likes from your Facebook for a better experience.

Hide Facebook Likesとは何ですか?

Hide Facebook LikesはPranay Mによって開発されたChromeの拡張機能で、その主な機能は「Hide other people's likes from your Facebook for a better experience.」です。

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

screenshot
screenshot
screenshot

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

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

拡張機能の使用方法

                        This extension lets a user hide the number of likes while scrolling through Facebook. Users can choose to hide just the like number, and keep the reacts (heart, angry react, etc). When you're done, just click on the icon in the top right corner to unhide the likes.                    

拡張機能の基本情報

名前 Hide Facebook Likes Hide Facebook Likes
ID gbblbfjkpgmkiebfgcddokfmbdldbcoj
公式URL https://chromewebstore.google.com/detail/hide-facebook-likes/gbblbfjkpgmkiebfgcddokfmbdldbcoj
説明 Hide other people's likes from your Facebook for a better experience.
ファイルサイズ 64.36 KB
インストール数 22
現在のバージョン 1.1
最終更新日 2018-12-27
公開日 2018-12-27
開発者 Pranay M
Eメール [email protected]
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Hide Facebook Likes",
    "version": "1.1",
    "description": "Hide other people's likes from your Facebook for a better experience.",
    "permissions": [
        "*:\/\/*.facebook.com\/*",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.facebook.com\/*"
            ],
            "js": [
                "jquery-3.3.1.min.js",
                "content.js"
            ],
            "css": [
                "content.css"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "128": "icons\/icon128.png",
        "48": "icons\/icon48.png",
        "16": "icons\/icon16.png"
    },
    "browser_action": {
        "default_icon": "icons\/icon16.png",
        "default_title": "Hide Facebook Likes",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "eventPage.js"
        ],
        "persistent": false
    }
}