Upload to Instagram. StoryTeller

Upload to Instagram. StoryTeller

Brand new tool to upload Instagram Stories from desktop. Your Stories with no limits.

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_name__",
  "description": "__MSG_description__",
  "default_locale": "en",
  "version": "1.0.1",
  "background": {
    "service_worker": "/js/bg.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.instagram.com/*"
      ],
      "run_at": "document_idle",
      "js": [
        "/js/app.js"
      ],
      "css": [
        "/css/upload_ui.css"
      ]
    }
  ],
  "host_permissions": [
    "https://*.instagram.com/*"
  ],
  "permissions": [
    "webRequest",
    "storage",
    "cookies"
  ],
  "icons": {
    "128": "/img/128.png"
  },
  "action": {
    "default_icon": "/img/128.png",
    "default_title": "__MSG_name__"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "/img/*"
      ],
      "matches": [
        "https://*.instagram.com/*"
      ]
    }
  ]
}