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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

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