Facebook Feed Limiter
Limits your Facebook News Feed to roughly 10 items, which is something that you secretly always wanted.
Vad är Facebook Feed Limiter?
Facebook Feed Limiter är en Chrome-tillägg utvecklad av matija.marohnic, och dess huvudfunktion är "Limits your Facebook News Feed to roughly 10 items, which is something that you secretly always wanted.".
Ladda ner Facebook Feed Limiter-förlängningens CRX-fil
Ladda ner Facebook Feed Limiter-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | |
ID | ojjjmcajplpdmodbfdbehknejjdafnem |
Officiell webbadress | https://chrome.google.com/webstore/detail/facebook-feed-limiter/ojjjmcajplpdmodbfdbehknejjdafnem |
Beskrivning | Limits your Facebook News Feed to roughly 10 items, which is something that you secretly always wanted. |
Filstorlek | 4.85 KB |
Antal Installationer | 29 |
Aktuell Version | 0.0.2 |
Senast Uppdaterad | 2016-04-24 |
Publiceringsdatum | 2016-04-24 |
Betyg | 5.00/5 Totalt 1 Betyg |
Utvecklare | matija.marohnic |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/silvenon/fb-feed-limiter |
Hjälpsida URL | https://github.com/silvenon/fb-feed-limiter |
Stödda Språk | 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\/" ] } |