SharePoint Modern List See More

SharePoint Modern List See More

When displaying the item in the Modern List, display it in the state that clicked 'See More'.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "SharePoint Modern List See More",
  "description": "When displaying the item in the Modern List, display it in the state that clicked 'See More'.",
  "default_locale": "en",
  "version": "0.1",
  "manifest_version": 2,
  "content_scripts": [
    {
      "matches": [
        "https://*.sharepoint.com/*List*"
      ],
      "js": [
        "jquery-2.2.0.min.js",
        "content_script.js"
      ],
      "run_at": "document_end",
      "all_frames": true
    }
  ]
}