EasyLoad. Upload Video & Photo for Instagram

EasyLoad. Upload Video & Photo for Instagram

This extension allows uploading photo and video to Instagram feed and stories from desktop

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_extName__",
  "description": "__MSG_extDescription__",
  "version": "0.3.3",
  "default_locale": "en",
  "icons": {
    "128": "img/upload_128.png"
  },
  "action": {
    "default_icon": {
      "16": "img/upload_16.png"
    }
  },
  "background": {
    "service_worker": "/js/sw.js"
  },
  "permissions": [
    "storage",
    "cookies",
    "tabs",
    "webRequest"
  ],
  "host_permissions": [
    "https://*.instagram.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*.instagram.com/*"
      ],
      "js": [
        "js/croppie.min.js",
        "js/cs.js"
      ],
      "css": [
        "css/content.css",
        "css/croppie.css"
      ],
      "run_at": "document_idle",
      "all_frames": true
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "css/*",
        "img/*"
      ],
      "matches": [
        "https://*.instagram.com/*"
      ]
    }
  ]
}