Linkedin Feed Sort By Recent

Automatically set Sort by Recent on Linkedin feed.

Vad är Linkedin Feed Sort By Recent?

Linkedin Feed Sort By Recent är en Chrome-tillägg utvecklad av https://www.davideviolante.com, och dess huvudfunktion är "Automatically set Sort by Recent on Linkedin feed.".

Tilläggsskärmbilder

screenshot

Ladda ner Linkedin Feed Sort By Recent-förlängningens CRX-fil

Ladda ner Linkedin Feed Sort By Recent-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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                    

Grundläggande Information om Tillägg

Namn Linkedin Feed Sort By Recent Linkedin Feed Sort By Recent
ID amcdflppdlgaejkildbondhbjojgkaai
Officiell webbadress https://chrome.google.com/webstore/detail/linkedin-feed-sort-by-rec/amcdflppdlgaejkildbondhbjojgkaai
Beskrivning Automatically set Sort by Recent on Linkedin feed.
Filstorlek 13.46 KB
Antal Installationer 40
Aktuell Version 1.4
Senast Uppdaterad 2020-11-11
Publiceringsdatum 2020-04-25
Utvecklare https://www.davideviolante.com
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/DavideViolante/
Hjälpsida URL https://github.com/DavideViolante/Linkedin-Feed-Sort-By-Recent/issues
Stödda Språk 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"
    ]
}