Anonymously Story Viewer for Instagram™

Anonymously Story Viewer for Instagram™

View instagram stories and highlights anonymously without notified the story owner.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "short_name": "Story Viewer",
  "name": "Anonymously Story Viewer for Instagram™",
  "description": "View instagram stories and highlights anonymously without notified the story owner.",
  "version": "1.0.5",
  "manifest_version": 3,
  "icons": {
    "16": "assets/icon_16.png",
    "32": "assets/icon_32.png",
    "64": "assets/icon_64.png",
    "128": "assets/icon_128.png",
    "256": "assets/icon_256.png",
    "512": "assets/icon_512.png"
  },
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "https://*.instagram.com/*",
    "https://*.cdninstagram.com/*",
    "https://*.fbcdn.net/*"
  ],
  "content_scripts": [
    {
      "js": [
        "content_scripts.bundle.js"
      ],
      "matches": [
        "https://*.instagram.com/*"
      ]
    }
  ],
  "background": {
    "service_worker": "background.bundle.js",
    "type": "module"
  },
  "action": {
    "default_popup": "viewer.html"
  }
}