Web client for Instagram™

Web client for Instagram™

This extension better than a mobile version of Instagram! View and upload IG Story and other functions in your browser.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "background": {
    "scripts": [
      "libs/jquery.js",
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": {
      "32": "assets/icons/icon32.png",
      "64": "assets/icons/icon64.png",
      "128": "assets/icons/icon128.png",
      "256": "assets/icons/icon256.png"
    },
    "default_title": "__MSG_name__"
  },
  "content_scripts": [
    {
      "all_frames": false,
      "js": [
        "js/browser.js"
      ],
      "matches": [
        "*://*/*"
      ],
      "run_at": "document_idle"
    },
    {
      "js": [
        "js/replace.js"
      ],
      "matches": [
        "*://www.instagram.com/*"
      ],
      "run_at": "document_start"
    },
    {
      "css": [
        "assets/css/popup.css"
      ],
      "js": [
        "libs/jquery.js",
        "js/content.js"
      ],
      "matches": [
        "*://www.instagram.com/*"
      ]
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "all_frames": true,
      "js": [
        "js/instaLinkListener.js"
      ]
    }
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval' ; object-src 'self'",
  "default_locale": "en",
  "description": "__MSG_description__",
  "icons": {
    "32": "assets/icons/icon32.png",
    "64": "assets/icons/icon64.png",
    "128": "assets/icons/icon128.png",
    "256": "assets/icons/icon256.png"
  },
  "manifest_version": 2,
  "name": "__MSG_name__",
  "permissions": [
    "<all_urls>",
    "storage",
    "webRequest",
    "webRequestBlocking",
    "downloads"
  ],
  "short_name": "Web IG",
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "1",
  "version_name": "1",
  "web_accessible_resources": [
    "assets/images/*",
    "css/*"
  ]
}