Hide Facebook Likes

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

Was ist Hide Facebook Likes?

Hide Facebook Likes ist eine Chrome-Erweiterung, die von Pranay M entwickelt wurde, und ihr Hauptmerkmal ist "Hide other people's likes from your Facebook for a better experience.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Hide Facebook Likes-Erweiterungs-CRX-Datei herunterladen

Laden Sie Hide Facebook Likes-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Hide Facebook Likes Hide Facebook Likes
ID gbblbfjkpgmkiebfgcddokfmbdldbcoj
Offizielle URL https://chromewebstore.google.com/detail/hide-facebook-likes/gbblbfjkpgmkiebfgcddokfmbdldbcoj
Beschreibung Hide other people's likes from your Facebook for a better experience.
Dateigröße 64.36 KB
Installationsanzahl 22
Aktuelle Version 1.1
Letztes Update 2018-12-27
Veröffentlichungsdatum 2018-12-27
Entwickler Pranay M
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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
    }
}