Full Screen Viewer for Instagram

Creates a picture frame from Instagram Images v1.5
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Full Screen Viewer for Instagram",
  "version": "1.5",
  "description": "Creates a picture frame from Instagram Images v1.5",
  "icons": {
    "16": "icon.png",
    "64": "woman_hat_64_icon.png",
    "128": "woman_hat_128px_icon.png"
  },
  "incognito": "spanning",
  "web_accessible_resources": [
    "d2.wasm"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://www.instagram.com/*"
      ],
      "js": [
        "jquery-3.3.1.min.js",
        "d2.js",
        "content.js"
      ],
      "css": [
        "styles.css"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  },
  "permissions": [
    "storage"
  ],
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'"
}