Phoneon. App for Instagram

Phoneon. App for Instagram

Customize Instagram desktop view and design, and enjoy additional features. Download and upload stories, photo and video

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__",
  "version": "1.1.4",
  "default_locale": "en",
  "icons": {
    "128": "img/icon_128.png"
  },
  "action": {
    "default_icon": {
      "16": "img/icon_16.png"
    }
  },
  "background": {
    "service_worker": "/js/bg.js"
  },
  "host_permissions": [
    "*://*.instagram.com/*"
  ],
  "permissions": [
    "storage",
    "cookies",
    "webRequest",
    "declarativeNetRequest"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*.instagram.com/*"
      ],
      "js": [
        "/js/cs.js"
      ],
      "css": [
        "/css/content.css"
      ],
      "run_at": "document_idle",
      "all_frames": true
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "/css/*",
        "/img/*"
      ],
      "matches": [
        "https://*.instagram.com/*"
      ]
    }
  ]
}