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
官方網址 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
電子郵箱 [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"
        }
    ]
}