Like Hider for Facebook
This browser extension hides likes and reactions from appearing in your Facebook notifications
Like Hider for Facebook क्या है?
Like Hider for Facebook Wesley Branton द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This browser extension hides likes and reactions from appearing in your Facebook notifications"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Like Hider for Facebook एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Although it is a feature that many people have asked for, there is no way to stop likes and reactions on your posts and comments from displaying in your Facebook notifications. This browser extension does just that. De-clutter your notification window by getting rid of those pointless notifications about likes and reactions. But why not take it a step further? A common theory is that social media can increase depression and can become addictive. This is due, in part, to the liking system used by social media platforms, which provides gratification that keeps you coming back. This browser extension also can hide the likes and reactions counter from posts and comments. You can also disable the “Like” button from Facebook entirely.
एक्सटेंशन की मूल जानकारी
नाम | Like Hider for Facebook |
ID | kbhhjpklnokbmlmngceginlbgfjjmojk |
आधिकारिक URL | https://chromewebstore.google.com/detail/like-hider-for-facebook/kbhhjpklnokbmlmngceginlbgfjjmojk |
विवरण | This browser extension hides likes and reactions from appearing in your Facebook notifications |
फ़ाइल का आकार | 88.13 KB |
स्थापना संख्या | 103 |
वर्तमान संस्करण | 5.1.3 |
अंतिम अपडेट | 2023-08-22 |
प्रकाशन तिथि | 2022-01-16 |
रेटिंग | 4.50/5 कुल 4 रेटिंग्स |
डेवलपर | Wesley Branton |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://addons.wesleybranton.com/addon/like-hider-for-facebook/ |
सहायता पृष्ठ URL | https://addons.wesleybranton.com/addon/like-hider-for-facebook/help |
गोपनीयता नीति पृष्ठ URL | https://addons.wesleybranton.com/privacy |
समर्थित भाषाएँ | en,lt |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "__MSG_extensionName__", "version": "5.1.3", "description": "__MSG_extensionDescription__", "author": "Wesley Branton", "default_locale": "en", "icons": { "32": "icons\/icon-32.png", "48": "icons\/icon-48.png", "64": "icons\/icon-64.png", "96": "icons\/icon-96.png", "128": "icons\/icon-128.png" }, "action": { "default_icon": { "19": "icons\/icon-19.png", "38": "icons\/icon-38.png" }, "default_title": "__MSG_extensionName__", "default_popup": "options\/options.html?type=popup" }, "content_scripts": [ { "matches": [ "*:\/\/*.facebook.com\/*" ], "js": [ "content.js" ], "run_at": "document_start" } ], "background": { "service_worker": "background.js" }, "options_ui": { "page": "options\/options.html", "browser_style": false, "open_in_tab": true }, "permissions": [ "storage", "scripting" ], "host_permissions": [ "*:\/\/*.facebook.com\/*" ] } |