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ファイルをダウンロード

Code Injector拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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"
    }
}