Beautify Post

Beautify Post

Web extension that allows to bold and italicize text on the LinkedIn website.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "Web extension that allows to bold and italicize text on the LinkedIn website.",
  "version": "1.2.0",
  "name": "Beautify Post",
  "manifest_version": 3,
  "author": "Victor de la Fouchardiere",
  "options_page": "options/popup.html",
  "icons": {
    "16": "16x16.png",
    "32": "32x32.png",
    "48": "48x48.png",
    "128": "128x128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.linkedin.com/*"
      ],
      "js": [
        "main.bundle.js"
      ]
    }
  ]
}