Linkedin Feed Sort By Recent
Automatically set Sort by Recent on Linkedin feed.
Linkedin Feed Sort By Recent क्या है?
Linkedin Feed Sort By Recent https://www.davideviolante.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Automatically set Sort by Recent on Linkedin feed."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Linkedin Feed Sort By Recent एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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
एक्सटेंशन की मूल जानकारी
नाम | |
ID | amcdflppdlgaejkildbondhbjojgkaai |
आधिकारिक URL | https://chrome.google.com/webstore/detail/linkedin-feed-sort-by-rec/amcdflppdlgaejkildbondhbjojgkaai |
विवरण | Automatically set Sort by Recent on Linkedin feed. |
फ़ाइल का आकार | 13.46 KB |
स्थापना संख्या | 40 |
वर्तमान संस्करण | 1.4 |
अंतिम अपडेट | 2020-11-11 |
प्रकाशन तिथि | 2020-04-25 |
डेवलपर | https://www.davideviolante.com |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/DavideViolante/ |
सहायता पृष्ठ URL | https://github.com/DavideViolante/Linkedin-Feed-Sort-By-Recent/issues |
समर्थित भाषाएँ | 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" ] } |