Facebook Feed Limiter
Limits your Facebook News Feed to roughly 10 items, which is something that you secretly always wanted.
Facebook Feed Limiter क्या है?
Facebook Feed Limiter matija.marohnic द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Limits your Facebook News Feed to roughly 10 items, which is something that you secretly always wanted."।
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Facebook Feed Limiter एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Have you ever lost 4 hours scrolling through your Facebook news feed? There's a reason they call it infinite scroll. his magnificent Chrome extension limits it to 10 items, which is something you secretly always wanted. This only limits the news feed, not the feed of a specific profile or a custom feed. This extension consists of 5 lines of CSS based on the current markup on Facebook, which will occasionally change, but I'll do my best to catch up with the changes.
एक्सटेंशन की मूल जानकारी
नाम | |
ID | ojjjmcajplpdmodbfdbehknejjdafnem |
आधिकारिक URL | https://chrome.google.com/webstore/detail/facebook-feed-limiter/ojjjmcajplpdmodbfdbehknejjdafnem |
विवरण | Limits your Facebook News Feed to roughly 10 items, which is something that you secretly always wanted. |
फ़ाइल का आकार | 4.85 KB |
स्थापना संख्या | 29 |
वर्तमान संस्करण | 0.0.2 |
अंतिम अपडेट | 2016-04-24 |
प्रकाशन तिथि | 2016-04-24 |
रेटिंग | 5.00/5 कुल 1 रेटिंग्स |
डेवलपर | matija.marohnic |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/silvenon/fb-feed-limiter |
सहायता पृष्ठ URL | https://github.com/silvenon/fb-feed-limiter |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Facebook Feed Limiter", "description": "Limits your Facebook News Feed to roughly 10 items, which is something that you secretly always wanted.", "version": "0.0.2", "page_action": { "default_icon": "icon.png" }, "content_scripts": [ { "matches": [ "https:\/\/www.facebook.com\/*" ], "css": [ "limiter.css" ], "js": [] } ], "permissions": [ "http:\/\/*.facebook.com\/", "https:\/\/*.facebook.com\/" ] } |