iSlide

iSlide

One click slideshow from any page with image links including: Google Images, Instagram and a save all feature!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "iSlide",
  "version": "4.1.0",
  "description": "One click slideshow from any page with image links including: Google Images, Instagram and a save all feature!",
  "icons": {
    "16": "Images/iSlide16.png",
    "128": "Images/iSlide128.png"
  },
  "browser_action": {
    "default_icon": "Images/iSlide19.png",
    "default_title": "Create slideshow (Ctrl + Space)"
  },
  "background": {
    "page": "background.html"
  },
  "content_scripts": [
    {
      "js": [
        "scanner.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval' https://ssl.google-analytics.com; object-src 'self'",
  "options_page": "iSlide_options.html",
  "permissions": [
    "tabs"
  ],
  "incognito": "split"
}