Undisposition [Racle fork]
Removes Content-Disposition: attachment HTTP header to allow view files instead of downloading them. Extension icon acts as toggle.
Co je Undisposition [Racle fork]?
Undisposition [Racle fork] je rozšíření Chrome vyvinuté Racle, a jeho hlavní funkcí je „Removes Content-Disposition: attachment HTTP header to allow view files instead of downloading them. Extension icon acts as toggle.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Undisposition [Racle fork]
Stáhněte si soubory rozšíření Undisposition [Racle fork] ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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.
Základní Informace o Rozšíření
Název | Undisposition [Racle fork] |
ID | bbppejejjfancffmhncgkhjdaikdgagc |
Oficiální URL | https://chromewebstore.google.com/detail/undisposition-racle-fork/bbppejejjfancffmhncgkhjdaikdgagc |
Popis | Removes Content-Disposition: attachment HTTP header to allow view files instead of downloading them. Extension icon acts as toggle. |
Velikost souboru | 15.47 KB |
Počet instalací | 5,479 |
Aktuální Verze | 0.0.6 |
Poslední Aktualizace | 2022-10-27 |
Datum Vydání | 2019-12-13 |
Hodnocení | 4.55/5 Celkem 31 Hodnocení |
Vývojář | Racle |
[email protected] | |
Typ Platby | free |
Webové stránky Rozšíření | https://github.com/Racle/undisposition |
URL Stránky Nápovědy | https://github.com/Racle/undisposition/issues/ |
Podporované Jazyky | 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:\/\/*\/" ] } |