InlineDisposition Reloaded

InlineDisposition Reloaded

InlineDisposition Reloaded changes the disposition type of "Content-Disposition" response headers from "attachment" and "file" to "inline"

Merlin
Additional files are visible only to premium users

manifest.json


{
  "description": "InlineDisposition Reloaded changes the disposition type of \"Content-Disposition\" response headers from \"attachment\" and \"file\" to \"inline\"; this prevents servers from forcing the browser to save a file and allows that file to be viewed in the browser, if the browser supports it. Original InlineDisposition extension from Kai Liu replaces only attachment, not file. Version 2.0 is using WebExtensions (only new FF).",
  "manifest_version": 2,
  "name": "InlineDisposition Reloaded",
  "version": "2.0.2resigned1",
  "icons": {
    "48": "inline-48.png",
    "96": "inline-96.png"
  },
  "permissions": [
    "webRequest",
    "webRequestBlocking",
    "<all_urls>"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{914d3a0b-6982-4e58-9a60-2e5d6cf6b09b}"
    }
  }
}