Photo SlideShow

Photo SlideShow

Turn Photos into a SlideShow!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_popup": "popup.html",
    "default_title": "PSS"
  },
  "content_scripts": [
    {
      "js": [
        "content.js"
      ],
      "matches": [
        "file:///*"
      ],
      "run_at": "document_idle"
    }
  ],
  "description": "Turn Photos into a SlideShow!",
  "homepage_url": "https://sermak.ca",
  "icons": {
    "128": "slideshow.png"
  },
  "incognito": "split",
  "manifest_version": 3,
  "name": "Photo SlideShow",
  "options_page": "options.html",
  "permissions": [
    "storage",
    "offscreen"
  ],
  "optional_host_permissions": [
    "<all_urls>"
  ],
  "short_name": "PSS",
  "version": "30.2",
  "web_accessible_resources": [
    {
      "resources": [
        "*.html",
        "*.svg"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}