Undisposition [Racle fork]

Removes Content-Disposition: attachment HTTP header to allow view files instead of downloading them. Extension icon acts as toggle.

Was ist Undisposition [Racle fork]?

Undisposition [Racle fork] ist eine Chrome-Erweiterung, die von Racle entwickelt wurde, und ihr Hauptmerkmal ist "Removes Content-Disposition: attachment HTTP header to allow view files instead of downloading them. Extension icon acts as toggle.".

Erweiterungsscreenshots

screenshot

Undisposition [Racle fork]-Erweiterungs-CRX-Datei herunterladen

Laden Sie Undisposition [Racle fork]-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Removes Content-Disposition: attachment HTTP header to allow view files instead of downloading them.
Sometimes you want to see files in Chrome inline, but Chrome started to download it.
This is quite irritating. This extension relaxes this behavior.
Extension icon acts as quick toggle on/off.

Source code: https://github.com/Racle/undisposition

Original extension: Undisposition: https://chrome.google.com/webstore/detail/undisposition/hjfncfijclafkkfifjelofbeclipplfi
Original code: https://github.com/cielavenir/ctouch/tree/master/undisposition
Issue this fork is based on: https://github.com/cielavenir/ctouch/issues/1
(Thanks to GianPaolo70!)

Original description: 

Remove Content-Disposition: attachment HTTP header.
Sometimes you want to see files in Chrome inline, but Chrome started to download it.
This is quite irritating. This extension relaxes this behavior.

Changelog:

Version 0.0.6:
Blacklist bugfix 

Version 0.0.5:
Manifest V3 support.
Added blacklist support.
Right click Undisposition icon => Settings to set domains to blacklist.                    

Grundlegende Informationen zur Erweiterung

Name Undisposition [Racle fork] Undisposition [Racle fork]
ID bbppejejjfancffmhncgkhjdaikdgagc
Offizielle URL https://chromewebstore.google.com/detail/undisposition-racle-fork/bbppejejjfancffmhncgkhjdaikdgagc
Beschreibung Removes Content-Disposition: attachment HTTP header to allow view files instead of downloading them. Extension icon acts as toggle.
Dateigröße 15.47 KB
Installationsanzahl 5,479
Aktuelle Version 0.0.6
Letztes Update 2022-10-27
Veröffentlichungsdatum 2019-12-13
Bewertung 4.55/5 Insgesamt 31 Bewertungen
Entwickler Racle
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/Racle/undisposition
Hilfeseite URL https://github.com/Racle/undisposition/issues/
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "author": "@racle",
    "name": "Undisposition [Racle fork]",
    "description": "Removes Content-Disposition: attachment HTTP header to allow view files instead of downloading them. Extension icon acts as toggle.",
    "version": "0.0.6",
    "manifest_version": 3,
    "background": {
        "service_worker": "undisposition_bg.js",
        "type": "module"
    },
    "icons": {
        "16": "icons\/icon16.png",
        "19": "icons\/icon19.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "action": {
        "default_title": "Undisposition"
    },
    "permissions": [
        "contextMenus",
        "declarativeNetRequest",
        "storage"
    ],
    "host_permissions": [
        "http:\/\/*\/",
        "https:\/\/*\/"
    ]
}