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]是由Racle开发的Chrome扩展程序,该扩展的主要功能是“Removes Content-Disposition: attachment HTTP header to allow view files instead of downloading them. Extension icon acts as toggle.”。

扩展截图

screenshot

下载Undisposition [Racle fork]扩展crx文件

下载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] 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:\/\/*\/"
    ]
}