CustomCSS Injector

Write any CSS rules for any websites

CustomCSS Injectorとは何ですか?

CustomCSS InjectorはBryceによって開発されたChromeの拡張機能で、その主な機能は「Write any CSS rules for any websites」です。

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

screenshot
screenshot
screenshot

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

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

拡張機能の使用方法

                        Originally developed as an Add-On for FireFox, Custom CSS Injector lets you write any CSS rules and apply them to any website you like. Change colours, backgrounds, resize and hide obtrusive elements. Anything you can do within the power of CSS!
Simply write the CSS you want to apply in the provided text field and click 'Save' (NO page refresh required!). Apply the CSS to the URL, Domain or Globally by using the radio buttons provided. There is also a whitelist/blacklist functionality to govern which websites you'd like to apply the CSS to.
Enjoy syntax highlighting and line numbers for code readability (Thanks to PrismJS!)                    

拡張機能の基本情報

名前 CustomCSS Injector CustomCSS Injector
ID eknfhefneldkoocaeokkapahblmodika
公式URL https://chrome.google.com/webstore/detail/customcss-injector/eknfhefneldkoocaeokkapahblmodika
説明 Write any CSS rules for any websites
ファイルサイズ 37.96 KB
インストール数 95
現在のバージョン 1.0
最終更新日 2020-03-02
公開日 2020-03-02
評価 2.50/5 合計 2 レビュー
開発者 Bryce
Eメール [email protected]
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "CustomCSS Injector",
    "short_name": "CSS Injector",
    "version": "1.0",
    "description": "Write any CSS rules for any websites",
    "manifest_version": 2,
    "icons": {
        "48": "icons\/CCSSI_icon_v2_48.png"
    },
    "permissions": [
        "activeTab",
        "storage",
        "",
        "contextMenus",
        "notifications"
    ],
    "browser_action": {
        "browser_style": true,
        "default_popup": "popup\/popup.html",
        "default_icon": {
            "48": "icons\/CCSSI_icon_v2_48.png",
            "96": "icons\/CCSSI_icon_v2_96.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "customcss.js"
            ],
            "run_at": "document_start",
            "all_frames": true,
            "match_about_blank": true
        }
    ]
}