Linkedin Feed Sort By Recent
Automatically set Sort by Recent on Linkedin feed.
Co je Linkedin Feed Sort By Recent?
Linkedin Feed Sort By Recent je rozšíření Chrome vyvinuté https://www.davideviolante.com, a jeho hlavní funkcí je „Automatically set Sort by Recent on Linkedin feed.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Linkedin Feed Sort By Recent
Stáhněte si soubory rozšíření Linkedin Feed Sort By Recent ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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
Základní Informace o Rozšíření
Název | |
ID | amcdflppdlgaejkildbondhbjojgkaai |
Oficiální URL | https://chrome.google.com/webstore/detail/linkedin-feed-sort-by-rec/amcdflppdlgaejkildbondhbjojgkaai |
Popis | Automatically set Sort by Recent on Linkedin feed. |
Velikost souboru | 13.46 KB |
Počet instalací | 40 |
Aktuální Verze | 1.4 |
Poslední Aktualizace | 2020-11-11 |
Datum Vydání | 2020-04-25 |
Vývojář | https://www.davideviolante.com |
[email protected] | |
Typ Platby | free |
Webové stránky Rozšíření | https://github.com/DavideViolante/ |
URL Stránky Nápovědy | https://github.com/DavideViolante/Linkedin-Feed-Sort-By-Recent/issues |
Podporované Jazyky | 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" ] } |