Undisposition [Racle fork]
Removes Content-Disposition: attachment HTTP header to allow view files instead of downloading them. Extension icon acts as toggle.
Что такое Undisposition [Racle fork]?
Undisposition [Racle fork] - это расширение Chrome, разработанное Racle, и его основная функция - "Removes Content-Disposition: attachment HTTP header to allow view files instead of downloading them. Extension icon acts as toggle.".
Снимки экрана расширения
Скачать файл CRX расширения Undisposition [Racle fork]
Скачайте файлы расширений Undisposition [Racle fork] в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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.
Основная информация о расширении
Название | Undisposition [Racle fork] |
ID | bbppejejjfancffmhncgkhjdaikdgagc |
Официальный URL | https://chromewebstore.google.com/detail/undisposition-racle-fork/bbppejejjfancffmhncgkhjdaikdgagc |
Описание | Removes Content-Disposition: attachment HTTP header to allow view files instead of downloading them. Extension icon acts as toggle. |
Размер файла | 15.47 KB |
Количество установок | 5,479 |
Текущая Версия | 0.0.6 |
Последнее Обновление | 2022-10-27 |
Дата публикации | 2019-12-13 |
Рейтинг | 4.55/5 Всего 31 оценок |
Разработчик | Racle |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/Racle/undisposition |
URL страницы помощи | https://github.com/Racle/undisposition/issues/ |
Поддерживаемые языки | 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:\/\/*\/" ] } |