Linkedin Feed Sort By Recent
Automatically set Sort by Recent on Linkedin feed.
Hvad er Linkedin Feed Sort By Recent?
Linkedin Feed Sort By Recent er en Chrome-udvidelse udviklet af https://www.davideviolante.com, og dens hovedfunktion er "Automatically set Sort by Recent on Linkedin feed.".
Udvidelsesskærmbilleder
Download Linkedin Feed Sort By Recent-udvidelses-CRX-fil
Download Linkedin Feed Sort By Recent-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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æggende oplysninger om udvidelsen
Navn | |
ID | amcdflppdlgaejkildbondhbjojgkaai |
Officiel URL | https://chrome.google.com/webstore/detail/linkedin-feed-sort-by-rec/amcdflppdlgaejkildbondhbjojgkaai |
Beskrivelse | Automatically set Sort by Recent on Linkedin feed. |
Filstørrelse | 13.46 KB |
Antal Installationer | 40 |
Nuværende Version | 1.4 |
Senest Opdateret | 2020-11-11 |
Udgivelsesdato | 2020-04-25 |
Udvikler | https://www.davideviolante.com |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | https://github.com/DavideViolante/ |
Hjælpeside-URL | https://github.com/DavideViolante/Linkedin-Feed-Sort-By-Recent/issues |
Understøttede Sprog | 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" ] } |