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开发的Chrome扩展程序,该扩展的主要功能是“Automatically set Sort by Recent on Linkedin feed.”。

扩展截图

screenshot

下载Linkedin Feed Sort By Recent扩展crx文件

下载Linkedin Feed Sort By Recent扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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                    

扩展基本信息

名称 Linkedin Feed Sort By Recent 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"
    ]
}