Resource Override
An extension to help you gain full control of any website by redirecting traffic, replacing, editing, or inserting new content.
Resource Override क्या है?
Resource Override Kyle Paulsen द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "An extension to help you gain full control of any website by redirecting traffic, replacing, editing, or inserting new content."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Resource Override एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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
एक्सटेंशन की मूल जानकारी
नाम | Resource Override |
ID | pkoacgokdfckfpndoffpifphamojphii |
आधिकारिक URL | https://chromewebstore.google.com/detail/resource-override/pkoacgokdfckfpndoffpifphamojphii |
विवरण | An extension to help you gain full control of any website by redirecting traffic, replacing, editing, or inserting new content. |
फ़ाइल का आकार | 432 KB |
स्थापना संख्या | 75,614 |
वर्तमान संस्करण | 1.3.1 |
अंतिम अपडेट | 2021-04-22 |
प्रकाशन तिथि | 2019-11-27 |
रेटिंग | 4.63/5 कुल 193 रेटिंग्स |
डेवलपर | Kyle Paulsen |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/kylepaulsen/ResourceOverride |
सहायता पृष्ठ URL | https://github.com/kylepaulsen/ResourceOverride/issues |
समर्थित भाषाएँ | 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", " |