Social Media Downloader

Download images and videos from social media channels
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "name": "__MSG_appTitle__",
  "version": "1.0.1",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "permissions": [
    "tabs",
    "<all_urls>",
    "storage",
    "webRequest"
  ],
  "icons": {
    "32": "sm 32.png",
    "48": "sm 48.png",
    "64": "sm 64.png",
    "128": "sm 128.png"
  },
  "browser_action": {
    "default_icon": "sm 128.png",
    "default_popup": "index.html",
    "default_title": "Background Changer"
  },
  "content_security_policy": "script-src 'self' 'sha256-XPXTT1UshpgwCgVqCHHlIsFwX/ez74PNQIN24esAYZs='; object-src 'self'",
  "background": {
    "scripts": [
      "background/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.instagram.com/*",
        "https://www.facebook.com/*",
        "https://twitter.com/*"
      ],
      "js": [
        "background/axios.min.js",
        "content/[email protected]",
        "content/instagram.js",
        "content/facebook.js",
        "content/twitter.js"
      ],
      "css": [
        "public/style.css"
      ],
      "run_at": "document_idle",
      "all_frames": true
    }
  ],
  "manifest_version": 2,
  "web_accessible_resources": [
    "public/*"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}