Byond

Byond

Move Byond the desktop limitations of Instagram!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Byond",
  "version": "3.2.0",
  "manifest_version": 2,
  "description": "Move Byond the desktop limitations of Instagram!",
  "icons": {
    "16": "icons/16x16.png",
    "32": "icons/32x32.png",
    "48": "icons/48x48.png",
    "64": "icons/64x64.png",
    "128": "icons/128x128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ],
      "css": [
        "content.css"
      ]
    },
    {
      "matches": [
        "https://*.instagram.com/*"
      ],
      "run_at": "document_start",
      "all_frames": true,
      "js": [
        "igContent.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "icons/*",
    "images/*",
    "iframe.css"
  ],
  "permissions": [
    "webRequest",
    "webRequestBlocking",
    "<all_urls>",
    "idle",
    "alarms",
    "cookies",
    "storage",
    "https://byond.social/*",
    "https://*.byond.social/*",
    "https://www.instagram.com/*"
  ],
  "browser_action": {
    "default_popup": "popup.html"
  },
  "externally_connectable": {
    "matches": [
      "https://byond.social/*"
    ]
  }
}