LI Folders

LI Folders

A extension to organize your linkedin posts

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "LI Folders",
  "version": "0.10.2",
  "description": "A extension to organize your linkedin posts",
  "action": {
    "default_popup": "src/popup/index.html",
    "default_icon": "icon-34.png"
  },
  "icons": {
    "128": "icon-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.linkedin.com/*"
      ],
      "js": [
        "src/content/index.js"
      ],
      "css": []
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "assets/js/*.js",
        "assets/css/*.css",
        "assets/png/*.png",
        "icon-34.png",
        "icon-128.png",
        "src/iframe/index.html"
      ],
      "matches": [
        "https://www.linkedin.com/*"
      ]
    }
  ],
  "permissions": [
    "activeTab"
  ]
}