Layoutify: Improved Layout for Instagram

Layoutify: Improved Layout for Instagram

The layout of Instagram.com is not optimized for the desktop. This extension improves this.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_extTitle__",
  "version": "3.12.2",
  "manifest_version": 3,
  "description": "__MSG_extDesc__",
  "default_locale": "en",
  "icons": {
    "16": "img/icon-128.png",
    "48": "img/icon-128.png",
    "128": "img/icon-128.png"
  },
  "author": "Jacob \"kurtextrem\" Groß",
  "content_scripts": [
    {
      "matches": [
        "*://*.instagram.com/*"
      ],
      "js": [
        "content/start.js",
        "content/main.js"
      ],
      "run_at": "document_end",
      "all_frames": true
    },
    {
      "matches": [
        "*://*.instagram.com/"
      ],
      "css": [
        "content/start.css"
      ],
      "run_at": "document_end",
      "all_frames": false
    }
  ],
  "background": {
    "service_worker": "content/background.js"
  },
  "options_page": "index.html#/options",
  "minimum_chrome_version": "93",
  "permissions": [
    "storage",
    "declarativeNetRequest",
    "cookies",
    "notifications",
    "alarms",
    "unlimitedStorage"
  ],
  "host_permissions": [
    "*://*.instagram.com/*",
    "*://*.fbcdn.net/*",
    "*://*.cdninstagram.com/*"
  ],
  "incognito": "split",
  "web_accessible_resources": [
    {
      "resources": [
        "content/night.css",
        "content/content.css",
        "content/igdata.js",
        "commons.bundle.js",
        "runtime.bundle.js",
        "vendors.bundle.js",
        "feed.bundle.js",
        "feed.css",
        "img/story.png",
        "img/IGsprite.webp"
      ],
      "matches": [
        "*://*.instagram.com/*"
      ]
    }
  ]
}