News Feed Sorter (for Facebook)
Keep your news feed sorted by most recent stories.
O que é News Feed Sorter (for Facebook)?
News Feed Sorter (for Facebook) é uma extensão do Chrome desenvolvida por fotiman, e sua principal característica é "Keep your news feed sorted by most recent stories.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão News Feed Sorter (for Facebook)
Baixe arquivos de extensão News Feed Sorter (for Facebook) no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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
Informações Básicas da Extensão
Nome | News Feed Sorter (for Facebook) |
ID | mccnenkndnfgcnbdeeoofceohoilikin |
URL Oficial | https://chromewebstore.google.com/detail/news-feed-sorter-for-face/mccnenkndnfgcnbdeeoofceohoilikin |
Descrição | Keep your news feed sorted by most recent stories. |
Tamanho do Arquivo | 13.11 KB |
Contagem de Instalações | 89 |
Versão Atual | 1.0.2 |
Última Atualização | 2022-12-13 |
Data de Publicação | 2017-07-09 |
Classificação | 5.00/5 Total de 4 Avaliações |
Desenvolvedor | fotiman |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/Fotiman/newsfeedsorter |
Idiomas Suportados | 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" } } |