Js-Injection

Javascript Injection Extenstion Tool for Chromium-based Web browsers

Js-Injection란 무엇입니까?

Js-Injection은(는) AnOldStory에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Javascript Injection Extenstion Tool for Chromium-based Web browsers"입니다.

확장 프로그램 스크린샷

screenshot

Js-Injection 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Javascript Injection Extension Tool for Chromium-based Web browsers

This Project is based on opensource 
visit https://github.com/AnOldStory/Js-Injection and make good extension together                    

확장 프로그램 기본 정보

이름 Js-Injection Js-Injection
ID mijnijeicfcodlijkmafknapfcilffni
공식 URL https://chromewebstore.google.com/detail/js-injection/mijnijeicfcodlijkmafknapfcilffni
설명 Javascript Injection Extenstion Tool for Chromium-based Web browsers
파일 크기 1.11 MB
설치 횟수 49
현재 버전 2.0.2
최근 업데이트 2020-04-02
출시 날짜 2020-03-27
개발자 AnOldStory
이메일 [email protected]
결제 유형 free
지원되는 언어 ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Js-Injection",
    "author": "AnOldStory",
    "version": "2.0.2",
    "description": "Javascript Injection Extenstion Tool for Chromium-based Web browsers",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "injection.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_start"
        }
    ],
    "browser_action": {
        "default_popup": "index.html",
        "default_title": "Js-Injection"
    },
    "icons": {
        "128": "icon128.png"
    },
    "options_page": "index.html",
    "permissions": [
        "storage",
        ""
    ]
}