Inject JS

This extension will inject javascript from a URL into the current webpage

Inject JS란 무엇입니까?

Inject JS은(는) dailenspencer12에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension will inject javascript from a URL into the current webpage"입니다.

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

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

확장 프로그램 사용 설명서

                                            

확장 프로그램 기본 정보

이름 Inject JS Inject JS
ID ppbefedgpemhmbmiehiodeobnoekdhfo
공식 URL https://chrome.google.com/webstore/detail/inject-js/ppbefedgpemhmbmiehiodeobnoekdhfo
설명 This extension will inject javascript from a URL into the current webpage
파일 크기 40.14 KB
설치 횟수 80
현재 버전 1.1
최근 업데이트 2016-09-29
출시 날짜 2016-09-29
개발자 dailenspencer12
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Inject JS",
    "description": "This extension will inject javascript from a URL into the current webpage",
    "version": "1.1",
    "browser_action": {
        "default_icon": "rocket.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.google.com\/*"
            ],
            "css": [
                "style.css"
            ],
            "js": [
                "jquery.min.js",
                "popup.js"
            ]
        }
    ],
    "icons": {
        "128": "rocket128.png"
    },
    "permissions": [
        "activeTab"
    ]
}