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開發的Chrome擴展程式,該擴展的主要功能是“An extension to help you gain full control of any website by redirecting traffic, replacing, editing, or inserting new content.”。

擴展截圖

screenshot
screenshot

下載Resource Override擴展crx文件

下載Resource Override擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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 Resource Override
ID pkoacgokdfckfpndoffpifphamojphii
官方網址 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",
        "",
        "tabs"
    ],
    "manifest_version": 2
}