Resource Override

An extension to help you gain full control of any website by redirecting traffic, replacing, editing, or inserting new content.

¿Qué es Resource Override?

Resource Override es una extensión de Chrome desarrollada por Kyle Paulsen, y su función principal es "An extension to help you gain full control of any website by redirecting traffic, replacing, editing, or inserting new content.".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión Resource Override

Descarga archivos de extensión Resource Override en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        This is the ultimate tool for taking control of any website.

Newly added: Request and Response header modification with common use case presets (Enable CORS, force allow outside content, allow iframes... etc).

This extension will allow you to redirect URLs on the fly before requests are made. You can also redirect URLs to text documents that you can create with this extension. If you need to inject JavaScript or CSS files, this extension has you covered.

This tool is great for debugging production websites, as you can edit and inject code on the fly. You no longer have to scan through minified code as you can just redirect to an unminified version or paste in the unminified version with the integrated file editor.

Feel free to contribute to this project!
https://github.com/kylepaulsen/ResourceOverride                    

Información Básica de la Extensión

Nombre Resource Override Resource Override
ID pkoacgokdfckfpndoffpifphamojphii
URL Oficial https://chromewebstore.google.com/detail/resource-override/pkoacgokdfckfpndoffpifphamojphii
Descripción An extension to help you gain full control of any website by redirecting traffic, replacing, editing, or inserting new content.
Tamaño del Archivo 432 KB
Cantidad de Instalaciones 75,614
Versión Actual 1.3.1
Última Actualización 2021-04-22
Fecha de Publicación 2019-11-27
Calificación 4.63/5 Total de 193 Calificaciones
Desarrollador Kyle Paulsen
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/kylepaulsen/ResourceOverride
URL de la Página de Ayuda https://github.com/kylepaulsen/ResourceOverride/issues
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Resource Override",
    "version": "1.3.1",
    "description": "An extension to help you gain full control of any website by redirecting traffic, replacing, editing, or inserting new content.",
    "icons": {
        "16": "icons\/icon-16x16.png",
        "48": "icons\/icon-48x48.png",
        "128": "icons\/icon-128x128.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "icons\/icon-16x16.png"
        }
    },
    "devtools_page": "src\/ui\/devtools.html",
    "options_ui": {
        "page": "src\/ui\/devtoolstab.html"
    },
    "background": {
        "page": "src\/background\/background.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "src\/inject\/scriptInjector.js"
            ],
            "all_frames": true,
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "webRequest",
        "webRequestBlocking",
        "",
        "tabs"
    ],
    "manifest_version": 2
}