Linkedin Feed Sort By Recent

Automatically set Sort by Recent on Linkedin feed.

Was ist Linkedin Feed Sort By Recent?

Linkedin Feed Sort By Recent ist eine Chrome-Erweiterung, die von https://www.davideviolante.com entwickelt wurde, und ihr Hauptmerkmal ist "Automatically set Sort by Recent on Linkedin feed.".

Erweiterungsscreenshots

screenshot

Linkedin Feed Sort By Recent-Erweiterungs-CRX-Datei herunterladen

Laden Sie Linkedin Feed Sort By Recent-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name Linkedin Feed Sort By Recent Linkedin Feed Sort By Recent
ID amcdflppdlgaejkildbondhbjojgkaai
Offizielle URL https://chrome.google.com/webstore/detail/linkedin-feed-sort-by-rec/amcdflppdlgaejkildbondhbjojgkaai
Beschreibung Automatically set Sort by Recent on Linkedin feed.
Dateigröße 13.46 KB
Installationsanzahl 40
Aktuelle Version 1.4
Letztes Update 2020-11-11
Veröffentlichungsdatum 2020-04-25
Entwickler https://www.davideviolante.com
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/DavideViolante/
Hilfeseite URL https://github.com/DavideViolante/Linkedin-Feed-Sort-By-Recent/issues
Unterstützte Sprachen 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"
    ]
}