Hide Facebook Likes
Hide other people's likes from your Facebook for a better experience.
Co to jest Hide Facebook Likes?
Hide Facebook Likes to rozszerzenie Chrome opracowane przez Pranay M, a jego główną funkcją jest „Hide other people's likes from your Facebook for a better experience.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Hide Facebook Likes
Pobierz pliki rozszerzeń Hide Facebook Likes w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | Hide Facebook Likes |
ID | gbblbfjkpgmkiebfgcddokfmbdldbcoj |
Oficjalny URL | https://chromewebstore.google.com/detail/hide-facebook-likes/gbblbfjkpgmkiebfgcddokfmbdldbcoj |
Opis | Hide other people's likes from your Facebook for a better experience. |
Rozmiar pliku | 64.36 KB |
Liczba instalacji | 22 |
Aktualna Wersja | 1.1 |
Ostatnia Aktualizacja | 2018-12-27 |
Data Publikacji | 2018-12-27 |
Deweloper | Pranay M |
[email protected] | |
Typ Płatności | free |
Obsługiwane Języki | 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 } } |