Icon List

Icon List

This extension allows the listing of specific plex software icons and adds a save shortcut

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Icon List",
  "version": "1.0.0.2",
  "manifest_version": 3,
  "description": "This extension allows the listing of specific plex software icons and adds a save shortcut",
  "icons": {
    "16": "ico.png"
  },
  "content_scripts": [
    {
      "run_at": "document_idle",
      "matches": [
        "https://cloud.plex.com/VisionPlex/Designer*",
        "https://test.cloud.plex.com/VisionPlex/Designer*"
      ],
      "js": [
        "jquery-3.6.0.min.js",
        "Icons.js"
      ]
    },
    {
      "run_at": "document_idle",
      "matches": [
        "https://cloud.plex.com/BusinessIntelligence/*",
        "https://test.cloud.plex.com/BusinessIntelligence/*"
      ],
      "js": [
        "jquery-3.6.0.min.js",
        "save.js"
      ]
    }
  ],
  "permissions": [],
  "action": {
    "default_popup": "Settings.html",
    "default_title": "Settings",
    "default_icon": "ico.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "settings.html",
        "icons.html"
      ],
      "matches": [
        "https://cloud.plex.com/*",
        "https://test.cloud.plex.com/*"
      ],
      "extension_ids": [
        "cdekgdhfbgofbehigjdfmfnbelemblei"
      ]
    }
  ]
}