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
官方網址 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"
    ]
}