Linkedin Feed Sort By Recent

Automatically set Sort by Recent on Linkedin feed.

¿Qué es Linkedin Feed Sort By Recent?

Linkedin Feed Sort By Recent es una extensión de Chrome desarrollada por https://www.davideviolante.com, y su función principal es "Automatically set Sort by Recent on Linkedin feed.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Linkedin Feed Sort By Recent

Descarga archivos de extensión Linkedin Feed Sort By Recent en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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                    

Información Básica de la Extensión

Nombre 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
Descripción Automatically set Sort by Recent on Linkedin feed.
Tamaño del Archivo 13.46 KB
Cantidad de Instalaciones 40
Versión Actual 1.4
Última Actualización 2020-11-11
Fecha de Publicación 2020-04-25
Desarrollador https://www.davideviolante.com
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/DavideViolante/
URL de la Página de Ayuda https://github.com/DavideViolante/Linkedin-Feed-Sort-By-Recent/issues
Idiomas Soportados 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"
    ]
}