Linkedin Feed Sort By Recent

Automatically set Sort by Recent on Linkedin feed.

Wat is Linkedin Feed Sort By Recent?

Linkedin Feed Sort By Recent is een Chrome-extensie ontwikkeld door https://www.davideviolante.com, en de belangrijkste functie is "Automatically set Sort by Recent on Linkedin feed.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Linkedin Feed Sort By Recent

Download Linkedin Feed Sort By Recent-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam Linkedin Feed Sort By Recent Linkedin Feed Sort By Recent
ID amcdflppdlgaejkildbondhbjojgkaai
Officiële URL https://chrome.google.com/webstore/detail/linkedin-feed-sort-by-rec/amcdflppdlgaejkildbondhbjojgkaai
Beschrijving Automatically set Sort by Recent on Linkedin feed.
Bestandsgrootte 13.46 KB
Aantal Installaties 40
Huidige Versie 1.4
Laatst Bijgewerkt 2020-11-11
Publicatiedatum 2020-04-25
Ontwikkelaar https://www.davideviolante.com
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/DavideViolante/
Help Pagina-URL https://github.com/DavideViolante/Linkedin-Feed-Sort-By-Recent/issues
Ondersteunde Talen 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"
    ]
}