Resource Override
An extension to help you gain full control of any website by redirecting traffic, replacing, editing, or inserting new content.
Co je Resource Override?
Resource Override je rozšíření Chrome vyvinuté Kyle Paulsen, a jeho hlavní funkcí je „An extension to help you gain full control of any website by redirecting traffic, replacing, editing, or inserting new content.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Resource Override
Stáhněte si soubory rozšíření Resource Override ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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
Základní Informace o Rozšíření
Název | Resource Override |
ID | pkoacgokdfckfpndoffpifphamojphii |
Oficiální URL | https://chromewebstore.google.com/detail/resource-override/pkoacgokdfckfpndoffpifphamojphii |
Popis | An extension to help you gain full control of any website by redirecting traffic, replacing, editing, or inserting new content. |
Velikost souboru | 432 KB |
Počet instalací | 75,614 |
Aktuální Verze | 1.3.1 |
Poslední Aktualizace | 2021-04-22 |
Datum Vydání | 2019-11-27 |
Hodnocení | 4.63/5 Celkem 193 Hodnocení |
Vývojář | Kyle Paulsen |
[email protected] | |
Typ Platby | free |
Webové stránky Rozšíření | https://github.com/kylepaulsen/ResourceOverride |
URL Stránky Nápovědy | https://github.com/kylepaulsen/ResourceOverride/issues |
Podporované Jazyky | 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", " |