Linkedin Feed Sort By Recent

Automatically set Sort by Recent on Linkedin feed.

O que é Linkedin Feed Sort By Recent?

Linkedin Feed Sort By Recent é uma extensão do Chrome desenvolvida por https://www.davideviolante.com, e sua principal característica é "Automatically set Sort by Recent on Linkedin feed.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Linkedin Feed Sort By Recent

Baixe arquivos de extensão Linkedin Feed Sort By Recent 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

                        Automatically change the sorting on Linkedin feed from Top to Recent.
If it does not work at first try, reload the Linkedin page.

To disable the extension behaviour completely is not enough to uninstall the extension, you also need to remove a cookie. Follow the istructions here: 
https://github.com/DavideViolante/Linkedin-Feed-Sort-By-Recent/blob/master/README.md#uninstall

This extension is open source and you can contribute to make it better: https://github.com/DavideViolante/Linkedin-Feed-Sort-By-Recent                    

Informações Básicas da Extensão

Nome Linkedin Feed Sort By Recent Linkedin Feed Sort By Recent
ID amcdflppdlgaejkildbondhbjojgkaai
URL Oficial https://chrome.google.com/webstore/detail/linkedin-feed-sort-by-rec/amcdflppdlgaejkildbondhbjojgkaai
Descrição Automatically set Sort by Recent on Linkedin feed.
Tamanho do Arquivo 13.46 KB
Contagem de Instalações 40
Versão Atual 1.4
Última Atualização 2020-11-11
Data de Publicação 2020-04-25
Desenvolvedor https://www.davideviolante.com
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/DavideViolante/
URL da Página de Ajuda https://github.com/DavideViolante/Linkedin-Feed-Sort-By-Recent/issues
Idiomas Suportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Linkedin Feed Sort By Recent",
    "description": "Automatically set Sort by Recent on Linkedin feed.",
    "version": "1.4",
    "author": "Davide Violante",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_title": ""
    },
    "permissions": [],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.linkedin.com\/*"
            ],
            "js": [
                "linkedinFeedSortByRecent.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "linkedinFeedSortByRecent.js"
    ]
}