Code Injector

Extension for JS & style injecting into the specified website.

Code Injector란 무엇입니까?

Code Injector은(는) martin.suba01에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Extension for JS & style injecting into the specified website."입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        Tool for injecting custom JavaScript and CSS into website specified by domain. Uses Chrome storage sync API to store your scripts. You can create and edit your scripts in the tab UI of the extension which opens on extension icon click. There's jQuery support for JavaScript codes.

Features:
✔️ injects JS and CSS code into website specified by domain match
✔️ supports jQuery v3.4.1
✔️ tab UI for script management
✔️ simple code editor with JS/CSS text highlight                    

확장 프로그램 기본 정보

이름 Code Injector Code Injector
ID mmngbmmjfjannofkffhoindghfbhcool
공식 URL https://chromewebstore.google.com/detail/code-injector/mmngbmmjfjannofkffhoindghfbhcool
설명 Extension for JS & style injecting into the specified website.
파일 크기 110 KB
설치 횟수 1,016
현재 버전 0.0.1
최근 업데이트 2020-02-06
출시 날짜 2020-02-06
평점 3.30/5 총 10 개의 평점
개발자 martin.suba01
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Code Injector",
    "description": "Extension for JS & style injecting into the specified website.",
    "version": "0.0.1",
    "author": "Martin Suba",
    "background": {
        "page": "background.html",
        "persistent": true
    },
    "browser_action": {
        "default_icon": {
            "64": "icons\/icon64.png"
        },
        "default_title": "Open the Code Injector in tab"
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "permissions": [
        "tabs",
        "storage",
        "activeTab",
        "*:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_idle",
            "js": [
                "content-script.js"
            ],
            "all_frames": false
        }
    ],
    "icons": {
        "16": "icons\/icon16.png",
        "32": "icons\/icon32.png",
        "64": "icons\/icon64.png",
        "128": "icons\/icon128.png"
    }
}