News Feed Sorter (for Facebook)
Keep your news feed sorted by most recent stories.
Τι είναι το News Feed Sorter (for Facebook);
Το News Feed Sorter (for Facebook) είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον fotiman, και η κύρια λειτουργία του είναι "Keep your news feed sorted by most recent stories.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης News Feed Sorter (for Facebook)
Λήψη αρχείων επέκτασης News Feed Sorter (for Facebook) σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
This extension will attempt to keep your Facebook news feed sorted by the most recent stories. You can set this preference in Facebook, but it does not persist this setting for very long, and you may find that you're suddenly viewing the top stories again (potentially missing recent stories). This extension searches for the presence of a link on the page that indicates whether your news feed is sorted or not, and if not will redirect to the URL that sets the sorting to most recent. Note, this extension is in no way affiliated or associated with Facebook. The source code for this extension is free and available at: https://github.com/Fotiman/newsfeedsorter
Βασικές Πληροφορίες Επέκτασης
Όνομα | News Feed Sorter (for Facebook) |
ID | mccnenkndnfgcnbdeeoofceohoilikin |
Επίσημο URL | https://chromewebstore.google.com/detail/news-feed-sorter-for-face/mccnenkndnfgcnbdeeoofceohoilikin |
Περιγραφή | Keep your news feed sorted by most recent stories. |
Μέγεθος Αρχείου | 13.11 KB |
Αριθμός Εγκαταστάσεων | 89 |
Τρέχουσα Έκδοση | 1.0.2 |
Τελευταία Ενημέρωση | 2022-12-13 |
Ημερομηνία Δημοσίευσης | 2017-07-09 |
Αξιολόγηση | 5.00/5 Συνολικά 4 Αξιολογήσεις |
Προγραμματιστής | fotiman |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://github.com/Fotiman/newsfeedsorter |
Υποστηριζόμενες Γλώσσες | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "News Feed Sorter (for Facebook)", "description": "Keep your news feed sorted by most recent stories.", "version": "1.0.2", "permissions": [ "*:\/\/www.facebook.com\/*", "webNavigation" ], "page_action": { "default_icon": "19x19.png", "default_title": "News Feed Sorter" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "*:\/\/www.facebook.com\/*" ], "js": [ "sortredirect.js" ], "run_at": "document_end" } ], "icons": { "128": "128x128.png", "64": "64x64.png", "48": "48x48.png", "32": "32x32.png", "19": "19x19.png", "16": "16x16.png" } } |