Linkedin Feed Sort By Recent

Automatically set Sort by Recent on Linkedin feed.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
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"
  ]
}