CSS Injector

Inject custom css to specified web page

CSS Injectorとは何ですか?

CSS InjectorはUnknownによって開発されたChromeの拡張機能で、その主な機能は「Inject custom css to specified web page」です。

拡張機能のスクリーンショット

screenshot

CSS Injector拡張機能のCRXファイルをダウンロード

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

拡張機能の使用方法

                        Inject custom css to specified web page                    

拡張機能の基本情報

名前 CSS Injector CSS Injector
ID bonanlhbgkbmdbpgmljgpkcihiccfbha
公式URL https://chromewebstore.google.com/detail/css-injector/bonanlhbgkbmdbpgmljgpkcihiccfbha
説明 Inject custom css to specified web page
ファイルサイズ 142 KB
インストール数 28
現在のバージョン 0.2
最終更新日 2022-03-29
公開日 2022-03-29
開発者 Unknown
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/m-masataka/css-injector-extension
対応言語 ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "CSS Injector",
    "manifest_version": 3,
    "version": "0.2",
    "permissions": [
        "activeTab",
        "storage"
    ],
    "options_page": "index.html",
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_icon": "disabled.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ]
}