Examine source code of Simple LinkedIn RTL Support

Inspect and view changes in Simple LinkedIn RTL Support source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 2,
  "name": "LinkedIn RTL Support",
  "description": "This extension enables RTL support for LinkedIn post pop up, article section and newsletter section",
  "version": "1.0",
  "permissions": [
    "activeTab",
    "https://www.linkedin.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://www.linkedin.com/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "icons": {
    "48": "icon_48.png",
    "128": "icon_128.png"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{0a900b92-3632-4f6e-9d53-e46512ddaa2b}"
    }
  }
}