Jimmy's CSS Injector

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

Co je Jimmy's CSS Injector?

Jimmy's CSS Injector je rozšíření Chrome vyvinuté jimmyruan12, a jeho hlavní funkcí je „This extension changes css style for a specific page using style injection.“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření Jimmy's CSS Injector

Stáhněte si soubory rozšíření Jimmy's CSS Injector ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Jimmy's CSS Injector Jimmy's CSS Injector
ID cdelafiegdlpmfomhfcckgaihmclcgmd
Oficiální URL https://chrome.google.com/webstore/detail/jimmys-css-injector/cdelafiegdlpmfomhfcckgaihmclcgmd
Popis This extension changes css style for a specific page using style injection.
Velikost souboru 2.21 MB
Počet instalací 40
Aktuální Verze 1.10.1
Poslední Aktualizace 2017-09-07
Datum Vydání 2017-09-07
Hodnocení 2.00/5 Celkem 1 Hodnocení
Vývojář jimmyruan12
Typ Platby free
Podporované Jazyky 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",
        "*:\/\/*\/*"
    ]
}