Kode Injector

Helps to inject JavaScript and CSS from local files

Kode Injector란 무엇입니까?

Kode Injector은(는) maximtop에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Helps to inject JavaScript and CSS from local files"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Kode Injector helps you to modify sites you are visiting with you browser via injecting JavaScript or CSS code.

IMPORTANT:
This extension need "Allow access to file URLs" to be activated
Links to local files should have "file" protocol, for example: "file:///index.js"

Please fill free to submit your issues here: https://gitlab.com/maximtop/kode-injector/issues                    

확장 프로그램 기본 정보

이름 Kode Injector Kode Injector
ID fgdehkdkmaiedleekbjpfoicpmodbicg
공식 URL https://chromewebstore.google.com/detail/kode-injector/fgdehkdkmaiedleekbjpfoicpmodbicg
설명 Helps to inject JavaScript and CSS from local files
파일 크기 547 KB
설치 횟수 237
현재 버전 0.7.4
최근 업데이트 2023-05-01
출시 날짜 2018-03-06
개발자 maximtop
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://gitlab.com/maximtop/kode-injector
도움말 페이지 URL https://gitlab.com/maximtop/kode-injector/issues
지원되는 언어 en,ru
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_name__",
    "description": "__MSG_description__",
    "default_locale": "en",
    "options_page": "options.html",
    "icons": {
        "16": "assets\/img\/icon-16.png",
        "32": "assets\/img\/icon-32.png",
        "48": "assets\/img\/icon-48.png",
        "128": "assets\/img\/icon-128.png"
    },
    "background": {
        "page": "background.html"
    },
    "browser_action": {
        "default_icon": {
            "16": "assets\/img\/icon-16.png",
            "32": "assets\/img\/icon-32.png"
        },
        "default_title": "__MSG_name__",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content-script.js"
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "",
        "storage"
    ],
    "version": "0.7.4"
}