Facebook Feed Limiter
Limits your Facebook News Feed to roughly 10 items, which is something that you secretly always wanted.
Was ist Facebook Feed Limiter?
Facebook Feed Limiter ist eine Chrome-Erweiterung, die von matija.marohnic entwickelt wurde, und ihr Hauptmerkmal ist "Limits your Facebook News Feed to roughly 10 items, which is something that you secretly always wanted.".
Facebook Feed Limiter-Erweiterungs-CRX-Datei herunterladen
Laden Sie Facebook Feed Limiter-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
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.
Grundlegende Informationen zur Erweiterung
Name | |
ID | ojjjmcajplpdmodbfdbehknejjdafnem |
Offizielle URL | https://chrome.google.com/webstore/detail/facebook-feed-limiter/ojjjmcajplpdmodbfdbehknejjdafnem |
Beschreibung | Limits your Facebook News Feed to roughly 10 items, which is something that you secretly always wanted. |
Dateigröße | 4.85 KB |
Installationsanzahl | 29 |
Aktuelle Version | 0.0.2 |
Letztes Update | 2016-04-24 |
Veröffentlichungsdatum | 2016-04-24 |
Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
Entwickler | matija.marohnic |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/silvenon/fb-feed-limiter |
Hilfeseite URL | https://github.com/silvenon/fb-feed-limiter |
Unterstützte Sprachen | 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\/" ] } |