Safer Redirects

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

Apa itu Safer Redirects?

Safer Redirects adalah ekstensi Chrome yang dikembangkan oleh Michael Brodmann, dan fitur utamanya adalah "This extension displays the url to which the redirect would have occured. Choice wisely if you want to proceed.".

Screenshot Ekstensi

screenshot
screenshot
screenshot

Unduh Berkas CRX Ekstensi Safer Redirects

Unduh file ekstensi Safer Redirects dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Safer Redirects Safer Redirects
ID ecejaaoknpcjfheoejampbickooodnna
URL Resmi https://chromewebstore.google.com/detail/safer-redirects/ecejaaoknpcjfheoejampbickooodnna
Deskripsi This extension displays the url to which the redirect would have occured. Choice wisely if you want to proceed.
Ukuran File 9.92 KB
Jumlah Instalasi 150
Versi Saat Ini 1.0
Terakhir Diperbarui 2016-07-04
Tanggal Publikasi 2016-07-04
Penilaian 3.43/5 Total 7 Penilaian
Pengembang Michael Brodmann
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung 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"
        ]
    }
}