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.”。
擴展截圖
下載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] |
ID | bbppejejjfancffmhncgkhjdaikdgagc |
官方網址 | 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:\/\/*\/" ] } |