Custom Redirects

Extension allows to redirect any http request to any destination. Useful for debugging or blocking certain scripts.

ما هو Custom Redirects؟

Custom Redirects هو إضافة Chrome تم تطويرها بواسطة Pawel Raszewski، والميزة الرئيسية لها هي "Extension allows to redirect any http request to any destination. Useful for debugging or blocking certain scripts.".

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

screenshot

تحميل ملف CRX للإضافة Custom Redirects

قم بتنزيل ملفات الامتداد Custom Redirects بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        This extension makes possible to redirect specified URLs to different locations. It may be very useful for debugging production sites which have minified JS which can be replaced for non-minified JS.

Any asset URL can be redirected to any destination, that means you can replace images, CSS, javascript files and everything that is loaded by a browser via HTTP request.                    

معلومات أساسية عن التمديد

الاسم Custom Redirects Custom Redirects
ID kekdllcidamgebonidegjekidhdihdli
عنوان URL الرسمي https://chromewebstore.google.com/detail/custom-redirects/kekdllcidamgebonidegjekidhdihdli
الوصف Extension allows to redirect any http request to any destination. Useful for debugging or blocking certain scripts.
حجم الملف 135 KB
عدد التثبيتات 10,000
النسخة الحالية 1.0.1
آخر تحديث 2014-02-12
تاريخ النشر 2014-02-12
تقييم 3.85/5 مجموع تقييمات 205
المطور Pawel Raszewski
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Custom Redirects",
    "version": "1.0.1",
    "description": "Extension allows to redirect any http request to any destination. Useful for debugging or blocking certain scripts.",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "",
        "webRequest",
        "webRequestBlocking"
    ],
    "icons": {
        "128": "assets_swapper_icon_128.png",
        "48": "assets_swapper_icon_48.png",
        "16": "assets_swapper_icon_16.png"
    },
    "options_page": "options.html",
    "page_action": {
        "default_icon": "assets_swapper_icon_48.png",
        "default_title": "Assets Swapper - Enabled here"
    }
}