Safer Redirects

This extension displays the url to which the redirect would have occured. Choice wisely if you want to proceed.

ما هو Safer Redirects؟

Safer Redirects هو إضافة Chrome تم تطويرها بواسطة Michael Brodmann، والميزة الرئيسية لها هي "This extension displays the url to which the redirect would have occured. Choice wisely if you want to proceed.".

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

screenshot
screenshot
screenshot

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

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

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

                        This extension was created to mitigate threats like XSS or CSRF using an url shortener service. This extension will prompt you with the target url of the shortened url before the redirect occurs. You then can choice if you want to proceed or cancel the redirect.                    

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

الاسم Safer Redirects Safer Redirects
ID ecejaaoknpcjfheoejampbickooodnna
عنوان URL الرسمي https://chromewebstore.google.com/detail/safer-redirects/ecejaaoknpcjfheoejampbickooodnna
الوصف This extension displays the url to which the redirect would have occured. Choice wisely if you want to proceed.
حجم الملف 9.92 KB
عدد التثبيتات 150
النسخة الحالية 1.0
آخر تحديث 2016-07-04
تاريخ النشر 2016-07-04
تقييم 3.43/5 مجموع تقييمات 7
المطور Michael Brodmann
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Safer Redirects",
    "description": "This extension displays the url to which the redirect would have occured. Choice wisely if you want to proceed.",
    "version": "1.0",
    "options_page": "options.html",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "webRequest",
        "webRequestBlocking",
        "storage",
        ""
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}