Undisposition [Racle fork]
Removes Content-Disposition: attachment HTTP header to allow view files instead of downloading them. Extension icon acts as toggle.
Qu'est-ce que Undisposition [Racle fork] ?
Undisposition [Racle fork] est une extension Chrome développée par Racle, et sa fonction principale est "Removes Content-Disposition: attachment HTTP header to allow view files instead of downloading them. Extension icon acts as toggle.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Undisposition [Racle fork]
Téléchargez les fichiers d'extension Undisposition [Racle fork] au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Undisposition [Racle fork] |
ID | bbppejejjfancffmhncgkhjdaikdgagc |
URL Officiel | https://chromewebstore.google.com/detail/undisposition-racle-fork/bbppejejjfancffmhncgkhjdaikdgagc |
Description | Removes Content-Disposition: attachment HTTP header to allow view files instead of downloading them. Extension icon acts as toggle. |
Taille du Fichier | 15.47 KB |
Nombre d'Installations | 5,479 |
Version Actuelle | 0.0.6 |
Dernière Mise à Jour | 2022-10-27 |
Date de Publication | 2019-12-13 |
Évaluation | 4.55/5 Total 31 Évaluations |
Développeur | Racle |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/Racle/undisposition |
URL de la Page d'Aide | https://github.com/Racle/undisposition/issues/ |
Langues Prises en Charge | 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:\/\/*\/" ] } |