Inject Code

Inject different javascript or css code to every website, when you want

Inject Code란 무엇입니까?

Inject Code은(는) max에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Inject different javascript or css code to every website, when you want"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Extension will remember all css/js code you injected in every website and auto-inject them when web page is loaded.

Features:
-  inject custom js/css to website
-  inject CDN links to website
- 38 most popular themes
- auto-inject code to site option ( after loaded page scripts will inject automatically)
- highlight syntax errors and warnings
- hot keys : 
* Ctrl+Enter - run code, 
* Ctrl+F - find in editor

For inject code to site:
- open browser devtools panel,
- go to  "Inject code" tab
- write code ( on typing code autosaving  )
- on right top corner set ckeckbox "Inject code", and after reload code will be injecting to page ( or press buttom Play for once execute code )                    

확장 프로그램 기본 정보

이름 Inject Code Inject Code
ID gpaakhhkcmlenabckmapmlfnajboobbi
공식 URL https://chromewebstore.google.com/detail/inject-code/gpaakhhkcmlenabckmapmlfnajboobbi
설명 Inject different javascript or css code to every website, when you want
파일 크기 2.96 MB
설치 횟수 792
현재 버전 0.91.21
최근 업데이트 2020-08-04
출시 날짜 2020-07-06
평점 4.00/5 총 6 개의 평점
개발자 max
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Inject Code",
    "description": "Inject different javascript or css code to every website, when you want",
    "version": "0.91.21",
    "minimum_chrome_version": "16.0.884",
    "permissions": [
        "activeTab",
        "*:\/\/*\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "icons": {
        "16": "16.png",
        "32": "32.png",
        "48": "48.png",
        "128": "128.png"
    },
    "devtools_page": "devtools.html",
    "manifest_version": 2
}