News Feed Sorter (for Facebook)

Keep your news feed sorted by most recent stories.

News Feed Sorter (for Facebook) là gì?

News Feed Sorter (for Facebook) là một tiện ích mở rộng Chrome được phát triển bởi fotiman, và tính năng chính của nó là "Keep your news feed sorted by most recent stories.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng News Feed Sorter (for Facebook)

Tải xuống các tệp mở rộng News Feed Sorter (for Facebook) dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên News Feed Sorter (for Facebook) News Feed Sorter (for Facebook)
ID mccnenkndnfgcnbdeeoofceohoilikin
URL Chính Thức https://chromewebstore.google.com/detail/news-feed-sorter-for-face/mccnenkndnfgcnbdeeoofceohoilikin
Mô tả Keep your news feed sorted by most recent stories.
Kích Thước Tệp 13.11 KB
Số Lần Cài Đặt 89
Phiên Bản Hiện Tại 1.0.2
Cập Nhật Lần Cuối 2022-12-13
Ngày Phát Hành 2017-07-09
Đánh Giá 5.00/5 Tổng số 4 Đánh Giá
Nhà Phát Triển fotiman
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/Fotiman/newsfeedsorter
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}