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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Removes Content-Disposition: attachment HTTP header to allow view files instead of downloading them. Extension icon acts as toggle."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Undisposition [Racle fork] एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

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