Inject Code

Inject your own code into any webpage

Inject Code란 무엇입니까?

Inject Code은(는) Yehuda Moskowitz에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Inject your own code into any webpage"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Inject Code 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Write JS/JSX/CSS snippets that can be executed by click of a button.

Features:
*    Custom code or link to an external library
*    Filter on specific URL's
*    Auto run
*    Filter auto run on specific URL's
*    Simple interface
*    Write/Update in separate tab while testing on web page
*    Toggle horizontal/vertical split view in edit mode
*    Toggle full screen in edit mode
*    Choose whether to run in all frames                    

확장 프로그램 기본 정보

이름 Inject Code Inject Code
ID jpbbdgndcngomphbmplabjginoihkdph
공식 URL https://chromewebstore.google.com/detail/inject-code/jpbbdgndcngomphbmplabjginoihkdph
설명 Inject your own code into any webpage
파일 크기 4.68 MB
설치 횟수 1,066
현재 버전 1.0.4.7
최근 업데이트 2024-01-04
출시 날짜 2018-12-18
평점 4.89/5 총 9 개의 평점
개발자 Yehuda Moskowitz
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "short_name": "Inject Code",
    "manifest_version": 2,
    "name": "Inject Code",
    "version": "1.0.4.7",
    "description": "Inject your own code into any webpage",
    "browser_action": {
        "default_popup": "index.html",
        "default_icon": "images\/inject.png",
        "default_title": "Inject Code Snippets"
    },
    "options_page": "index.html?page=options",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "content_security_policy": "script-src 'self' 'sha256-GgRxrVOKNdB4LrRsVPDSbzvfdV4UqglmviH9GoBJ5jk='; object-src 'self'",
    "web_accessible_resources": [],
    "permissions": [
        "activeTab",
        "storage",
        "clipboardWrite"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "babel.js",
                "content.js"
            ],
            "all_frames": true
        }
    ]
}