Media Carousel — browse media without distractions

Media Carousel — browse media without distractions

Displays embedded and linked images and videos on the current page in a carousel. Quick demo video: https://streamable.com/89j2y

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Media Carousel",
  "version": "1.2.2",
  "description": "Displays all embedded and linked media on the current page in a carousel.",
  "homepage_url": "https://github.com/blaise-io/media-carousel#readme",
  "permissions": [
    "activeTab",
    "storage"
  ],
  "background": {
    "scripts": [
      "/background.js"
    ]
  },
  "applications": {
    "gecko": {
      "id": "[email protected]"
    }
  },
  "icons": {
    "128": "/icons/icon.png"
  },
  "browser_action": {
    "default_icon": "/icons/icon.png",
    "browser_style": false
  },
  "web_accessible_resources": [
    "/carousel.html"
  ],
  "options_ui": {
    "page": "/options.html",
    "browser_style": true
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+M",
        "windows": "Ctrl+Shift+M",
        "linux": "Ctrl+Shift+M",
        "mac": "Command+Shift+M"
      }
    }
  }
}