Code Injector

Inject code into websites! (JavaScript, CSS, HTML and Files)

Code Injector란 무엇입니까?

Code Injector은(는) Urmil Parikh에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Inject code into websites! (JavaScript, CSS, HTML and Files)"입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        A WebExtensions based addon which let the user inject code into the websites. A very handy tool for developers and for automation.

This extension allows you to inject custom JavaScript code, custom CSS or even custom HTML to any web page.

Use it to customize appearance of a page, to auto-fill / auto-click forms on a page or to get rid of selective elements (e.g. advertisements) from a page. Get the control back on your browsing experience.

Backup / restore or share your rules using import/export feature (from Options).

Source code for this extension is available in GitHub, original work by L.Sabatelli.                    

확장 프로그램 기본 정보

이름 Code Injector Code Injector
ID jgcallaoodbhagkaoobenaabockcejmc
공식 URL https://chrome.google.com/webstore/detail/code-injector/jgcallaoodbhagkaoobenaabockcejmc
설명 Inject code into websites! (JavaScript, CSS, HTML and Files)
파일 크기 1.83 MB
설치 횟수 2,000
현재 버전 0.3.2
최근 업데이트 2020-02-25
출시 날짜 2020-02-25
평점 5.00/5 총 8 개의 평점
개발자 Urmil Parikh
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/urmilparikh/Code-Injector
도움말 페이지 URL https://github.com/urmilparikh/Code-Injector#quick-start
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Code Injector",
    "version": "0.3.2",
    "author": "L.Sabatelli",
    "description": "Inject code into websites! (JavaScript, CSS, HTML and Files)",
    "permissions": [
        "",
        "tabs",
        "activeTab",
        "storage",
        "webNavigation"
    ],
    "icons": {
        "16": "style\/images\/icon\/icon-16px.png",
        "24": "style\/images\/icon\/icon-24px.png",
        "32": "style\/images\/icon\/icon-32px.png",
        "48": "style\/images\/icon\/icon-48px.png",
        "64": "style\/images\/icon\/icon-64px.png",
        "96": "style\/images\/icon\/icon-96px.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "style\/images\/icon\/icon-16px.png",
            "24": "style\/images\/icon\/icon-24px.png",
            "32": "style\/images\/icon\/icon-32px.png",
            "48": "style\/images\/icon\/icon-48px.png",
            "64": "style\/images\/icon\/icon-64px.png",
            "96": "style\/images\/icon\/icon-96px.png"
        },
        "default_title": "Code Injector",
        "default_popup": "html\/browser-action.html"
    },
    "background": {
        "scripts": [
            "script\/browser-polyfill.min.js",
            "script\/background.js"
        ]
    },
    "options_ui": {
        "page": "html\/options-ui.html"
    }
}