Linkedin Feed Sort By Recent
Automatically set Sort by Recent on Linkedin feed.
Qu'est-ce que Linkedin Feed Sort By Recent ?
Linkedin Feed Sort By Recent est une extension Chrome développée par https://www.davideviolante.com, et sa fonction principale est "Automatically set Sort by Recent on Linkedin feed.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Linkedin Feed Sort By Recent
Téléchargez les fichiers d'extension Linkedin Feed Sort By Recent au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | |
ID | amcdflppdlgaejkildbondhbjojgkaai |
URL Officiel | https://chrome.google.com/webstore/detail/linkedin-feed-sort-by-rec/amcdflppdlgaejkildbondhbjojgkaai |
Description | Automatically set Sort by Recent on Linkedin feed. |
Taille du Fichier | 13.46 KB |
Nombre d'Installations | 40 |
Version Actuelle | 1.4 |
Dernière Mise à Jour | 2020-11-11 |
Date de Publication | 2020-04-25 |
Développeur | https://www.davideviolante.com |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/DavideViolante/ |
URL de la Page d'Aide | https://github.com/DavideViolante/Linkedin-Feed-Sort-By-Recent/issues |
Langues Prises en Charge | 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" ] } |