FastSave & Repost for Instagram

FastSave & Repost for Instagram

Download or repost stories, videos & photos from Instagram.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "version": "2.11",
  "icons": {
    "32": "assets/32.png",
    "64": "assets/64.png",
    "128": "assets/128.png"
  },
  "permissions": [
    "storage",
    "cookies",
    "webRequest",
    "webRequestBlocking",
    "downloads",
    "tabs",
    "<all_urls>"
  ],
  "background": {
    "scripts": [
      "js/background.js",
      "js/instaBg.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.instagram.com/*"
      ],
      "js": [
        "js/extension.js",
        "js/transform.js",
        "js/content.js"
      ],
      "css": [
        "css/extension.css"
      ]
    }
  ],
  "browser_action": {
    "default_icon": "assets/64.png",
    "default_popup": "html/popup.html"
  },
  "web_accessible_resources": [
    "assets/*"
  ]
}