Javascript Injector

Inject javascript to the webpage you are visiting

Javascript Injector란 무엇입니까?

Javascript Injector은(는) Daniel Han에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Inject javascript to the webpage you are visiting"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        This extension allows you to inject any javascript code into the web page you are visiting. It remembers your page specific script and syncs it across all your devices.

For example, if you want to change the background color of https://duckduckgo.com/ with light blue, you can inject the script 'document.body.style.backgroundColor = "lightblue";' using this extension. After that every time you open this web site, the back ground will be light blue automatically.                    

확장 프로그램 기본 정보

이름 Javascript Injector Javascript Injector
ID ejnccfcackblkelbafbolcpjfpcmbplg
공식 URL https://chromewebstore.google.com/detail/javascript-injector/ejnccfcackblkelbafbolcpjfpcmbplg
설명 Inject javascript to the webpage you are visiting
파일 크기 59.53 KB
설치 횟수 2,000
현재 버전 1.2
최근 업데이트 2017-06-16
출시 날짜 2017-06-16
평점 4.13/5 총 8 개의 평점
개발자 Daniel Han
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/hex0cter/js-injector
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Javascript Injector",
    "author": "Daniel Han",
    "short_name": "JS injector",
    "description": "Inject javascript to the webpage you are visiting",
    "version": "1.2",
    "browser_action": {
        "default_icon": {
            "16": "images\/icon16.png",
            "24": "images\/icon24.png",
            "32": "images\/icon32.png",
            "128": "images\/icon128.png"
        },
        "default_title": "Javascript Injector",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "activeTab",
        "storage",
        "tabs",
        "activeTab",
        "http:\/\/*\/",
        "https:\/\/*\/"
    ]
}