Linkedin Feed Sort By Recent

Automatically set Sort by Recent on Linkedin feed.

Cos'è Linkedin Feed Sort By Recent?

Linkedin Feed Sort By Recent è un'estensione di Chrome sviluppata da https://www.davideviolante.com, e la sua funzione principale è "Automatically set Sort by Recent on Linkedin feed.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Linkedin Feed Sort By Recent

Scarica i file di estensione Linkedin Feed Sort By Recent in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Linkedin Feed Sort By Recent Linkedin Feed Sort By Recent
ID amcdflppdlgaejkildbondhbjojgkaai
URL Ufficiale https://chrome.google.com/webstore/detail/linkedin-feed-sort-by-rec/amcdflppdlgaejkildbondhbjojgkaai
Descrizione Automatically set Sort by Recent on Linkedin feed.
Dimensione del File 13.46 KB
Conteggio Installazioni 40
Versione Corrente 1.4
Ultimo Aggiornamento 2020-11-11
Data di Pubblicazione 2020-04-25
Sviluppatore https://www.davideviolante.com
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/DavideViolante/
URL della Pagina di Aiuto https://github.com/DavideViolante/Linkedin-Feed-Sort-By-Recent/issues
Lingue Supportate 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"
    ]
}