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.”。
擴展截圖
下載News Feed Sorter (for Facebook)擴展crx文件
下載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 |
官方網址 | 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" } } |