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.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Undisposition [Racle fork]

قم بتنزيل ملفات الامتداد Undisposition [Racle fork] بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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
عنوان صفحة المساعدة 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:\/\/*\/"
    ]
}