Hide Facebook Likes

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

Hide Facebook Likesคืออะไร?

Hide Facebook Likes เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Pranay M และคุณลักษณะหลักของมันคือ "Hide other people's likes from your Facebook for a better experience."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Hide Facebook Likes

ดาวน์โหลดไฟล์ส่วนขยาย 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
อีเมล [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
    }
}