Jimmy's CSS Injector

This extension changes css style for a specific page using style injection.

Jimmy's CSS Injectorとは何ですか?

Jimmy's CSS Injectorはjimmyruan12によって開発されたChromeの拡張機能で、その主な機能は「This extension changes css style for a specific page using style injection.」です。

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

screenshot
screenshot
screenshot
screenshot

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

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

拡張機能の使用方法

                        Simple chrome extension that can inject css into the existing web page.
This app can accomplish the following:
1. Inject css into the existing web page.
2. It allows saving multiple css styles in the chrome system.
3. It can undo injected css style.                    

拡張機能の基本情報

名前 Jimmy's CSS Injector Jimmy's CSS Injector
ID cdelafiegdlpmfomhfcckgaihmclcgmd
公式URL https://chrome.google.com/webstore/detail/jimmys-css-injector/cdelafiegdlpmfomhfcckgaihmclcgmd
説明 This extension changes css style for a specific page using style injection.
ファイルサイズ 2.21 MB
インストール数 40
現在のバージョン 1.10.1
最終更新日 2017-09-07
公開日 2017-09-07
評価 2.00/5 合計 1 レビュー
開発者 jimmyruan12
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Jimmy's CSS Injector",
    "short name": "css injector",
    "description": "This extension changes css style for a specific page using style injection.",
    "version": "1.10.1",
    "icons": {
        "128": "icons\/icon128.png",
        "48": "icons\/icon48.png",
        "16": "icons\/icon16.png"
    },
    "page_action": {
        "default_icon": "icons\/icon16.png",
        "default_popup": "popup.html",
        "default_title": "PageFontStyle"
    },
    "background": {
        "scripts": [
            "js\/helper.js",
            "js\/eventPage.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/jquery-3.1.0.min.js",
                "js\/helper.js",
                "js\/content.js"
            ],
            "css": [
                "css\/content.css"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "tabs",
        "contextMenus",
        "tts",
        "storage",
        "webNavigation",
        "*:\/\/*\/*"
    ]
}