AddCSS

This extension allows you to add your own custom website specific CSS style sheets.

AddCSS क्या है?

AddCSS http://mkhsoft.eu द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension allows you to add your own custom website specific CSS style sheets."।

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

screenshot
screenshot

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

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

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

                        AddCSS is a neat extension that lets you add your own custom domain specific CSS code to web pages

Your custom code is even synchronised between your Chrome browsers in different machines.                    

एक्सटेंशन की मूल जानकारी

नाम AddCSS AddCSS
ID ndddnaffbgingffgfneijoplfpeohabn
आधिकारिक URL https://chrome.google.com/webstore/detail/addcss/ndddnaffbgingffgfneijoplfpeohabn
विवरण This extension allows you to add your own custom website specific CSS style sheets.
फ़ाइल का आकार 676 KB
स्थापना संख्या 252
वर्तमान संस्करण 1.0
अंतिम अपडेट 2017-01-20
प्रकाशन तिथि 2017-01-20
रेटिंग 5.00/5 कुल 1 रेटिंग्स
डेवलपर http://mkhsoft.eu
भुगतान के प्रकार free
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "AddCSS",
    "description": "This extension allows you to add your own custom website specific CSS style sheets.",
    "version": "1.0",
    "browser_action": {
        "default_icon": "icon64.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icon16.png",
        "64": "icon64.png",
        "128": "icon128.png",
        "256": "icon256.png"
    },
    "background": {
        "scripts": [
            "logic.js",
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "tabs",
        "storage",
        "http:\/\/*\/",
        "https:\/\/*\/"
    ]
}