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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension changes css style for a specific page using style injection."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Jimmy's CSS Injector एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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",
        "*:\/\/*\/*"
    ]
}