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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 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",
        "",
        "tabs"
    ],
    "manifest_version": 2
}