Linkedin Feed Sort By Recent
Automatically set Sort by Recent on Linkedin feed.
Co to jest Linkedin Feed Sort By Recent?
Linkedin Feed Sort By Recent to rozszerzenie Chrome opracowane przez https://www.davideviolante.com, a jego główną funkcją jest „Automatically set Sort by Recent on Linkedin feed.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Linkedin Feed Sort By Recent
Pobierz pliki rozszerzeń Linkedin Feed Sort By Recent w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | amcdflppdlgaejkildbondhbjojgkaai |
Oficjalny URL | https://chrome.google.com/webstore/detail/linkedin-feed-sort-by-rec/amcdflppdlgaejkildbondhbjojgkaai |
Opis | Automatically set Sort by Recent on Linkedin feed. |
Rozmiar pliku | 13.46 KB |
Liczba instalacji | 40 |
Aktualna Wersja | 1.4 |
Ostatnia Aktualizacja | 2020-11-11 |
Data Publikacji | 2020-04-25 |
Deweloper | https://www.davideviolante.com |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/DavideViolante/ |
Adres URL Strony Pomocy | https://github.com/DavideViolante/Linkedin-Feed-Sort-By-Recent/issues |
Obsługiwane Języki | 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" ] } |