News Feed Sorter (for Facebook)

Keep your news feed sorted by most recent stories.

News Feed Sorter (for Facebook)란 무엇입니까?

News Feed Sorter (for Facebook)은(는) fotiman에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Keep your news feed sorted by most recent stories."입니다.

확장 프로그램 스크린샷

screenshot

News Feed Sorter (for Facebook) 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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) 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"
    }
}