Resource Override
An extension to help you gain full control of any website by redirecting traffic, replacing, editing, or inserting new content.
Resource Override là gì?
Resource Override là một tiện ích mở rộng Chrome được phát triển bởi Kyle Paulsen, và tính năng chính của nó là "An extension to help you gain full control of any website by redirecting traffic, replacing, editing, or inserting new content.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Resource Override
Tải xuống các tệp mở rộng Resource Override dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Resource Override |
ID | pkoacgokdfckfpndoffpifphamojphii |
URL Chính Thức | https://chromewebstore.google.com/detail/resource-override/pkoacgokdfckfpndoffpifphamojphii |
Mô tả | An extension to help you gain full control of any website by redirecting traffic, replacing, editing, or inserting new content. |
Kích Thước Tệp | 432 KB |
Số Lần Cài Đặt | 75,614 |
Phiên Bản Hiện Tại | 1.3.1 |
Cập Nhật Lần Cuối | 2021-04-22 |
Ngày Phát Hành | 2019-11-27 |
Đánh Giá | 4.63/5 Tổng số 193 Đánh Giá |
Nhà Phát Triển | Kyle Paulsen |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/kylepaulsen/ResourceOverride |
URL Trang Trợ Giúp | https://github.com/kylepaulsen/ResourceOverride/issues |
Ngôn Ngữ Được Hỗ Trợ | 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", " |