Hide Facebook Likes

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

Hide Facebook Likes là gì?

Hide Facebook Likes là một tiện ích mở rộng Chrome được phát triển bởi Pranay M, và tính năng chính của nó là "Hide other people's likes from your Facebook for a better experience.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Hide Facebook Likes

Tải xuống các tệp mở rộng Hide Facebook Likes dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Hide Facebook Likes Hide Facebook Likes
ID gbblbfjkpgmkiebfgcddokfmbdldbcoj
URL Chính Thức https://chromewebstore.google.com/detail/hide-facebook-likes/gbblbfjkpgmkiebfgcddokfmbdldbcoj
Mô tả Hide other people's likes from your Facebook for a better experience.
Kích Thước Tệp 64.36 KB
Số Lần Cài Đặt 22
Phiên Bản Hiện Tại 1.1
Cập Nhật Lần Cuối 2018-12-27
Ngày Phát Hành 2018-12-27
Nhà Phát Triển Pranay M
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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
    }
}