Folders.co

Folders.co

Create folders to easily organize your LinkedIn Messenger conversations directly from the LinkedIn website.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Folders.co",
  "version": "0.0.3",
  "description": "Create folders to easily organize your LinkedIn Messenger conversations directly from the LinkedIn website.",
  "permissions": [
    "background",
    "webRequest",
    "storage",
    "scripting"
  ],
  "host_permissions": [
    "*://*.linkedin.com/*",
    "*://localhost/*",
    "*://folders.co/*",
    "*://*.folders.co/*"
  ],
  "background": {
    "service_worker": "src/pages/background/index.js",
    "type": "module"
  },
  "action": {
    "default_popup": "src/pages/popup/index.html",
    "default_icon": "icon-34.png"
  },
  "chrome_url_overrides": {},
  "icons": {
    "128": "icon-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.linkedin.com/*",
        "*://localhost/*",
        "*://folders.co/*",
        "*://*.folders.co/*"
      ],
      "js": [
        "src/pages/content/index.js"
      ],
      "css": []
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "assets/js/*.js",
        "assets/css/*.css",
        "assets/png/Icon-128.chunk.png",
        "icon-34.png",
        "icon-128.png",
        "_favicon/*"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ]
}