Examine source code of UNUM Save to space

Inspect and view changes in UNUM Save to space source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 2,
  "name": "UNUM Save to space",
  "version": "1.0.0",
  "description": "Easily discover great content, save it on the go, and share it whenever you want! Take back your time.",
  "icons": {
    "16": "assets/img/logo16.png",
    "19": "assets/img/logo19.png",
    "38": "assets/img/logo38.png",
    "48": "assets/img/logo48.png",
    "128": "assets/img/logo128.png"
  },
  "browser_action": {
    "default_icon": {
      "16": "assets/img/logo16.png",
      "38": "assets/img/logo38.png"
    },
    "default_title": "See all images from this page"
  },
  "content_scripts": [
    {
      "js": [
        "content.js"
      ],
      "matches": [
        "*://*/*"
      ],
      "run_at": "document_end"
    },
    {
      "js": [
        "auth-iframe.js"
      ],
      "matches": [
        "https://dashboard.unum.la/auth.txt"
      ],
      "all_frames": true,
      "run_at": "document_start"
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "permissions": [
    "*://*/*",
    "contextMenus",
    "storage"
  ],
  "applications": {
    "gecko": {
      "id": "developer@unum.la"
    }
  },
  "web_accessible_resources": [
    "assets/*"
  ]
}