Linkedin Feed Sort By Recent

Automatically set Sort by Recent on Linkedin feed.

What is Linkedin Feed Sort By Recent?

Linkedin Feed Sort By Recent is a Chrome extension developed by https://www.davideviolante.com, and its main feature is "Automatically set Sort by Recent on Linkedin feed.".

Extension Screenshots

screenshot

Download Linkedin Feed Sort By Recent Extension CRX File

Download Linkedin Feed Sort By Recent extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Linkedin Feed Sort By Recent Linkedin Feed Sort By Recent
ID amcdflppdlgaejkildbondhbjojgkaai
Official URL https://chrome.google.com/webstore/detail/linkedin-feed-sort-by-rec/amcdflppdlgaejkildbondhbjojgkaai
Description Automatically set Sort by Recent on Linkedin feed.
File Size 13.46 KB
Installation Count 40
Current Version 1.4
Last Updated 2020-11-11
Publish Date 2020-04-25
Developer https://www.davideviolante.com
Email [email protected]
Payment Type free
Extension Website https://github.com/DavideViolante/
Help Page URL https://github.com/DavideViolante/Linkedin-Feed-Sort-By-Recent/issues
Supported Languages 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"
    ]
}