AddCSS

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

Что такое AddCSS?

AddCSS - это расширение Chrome, разработанное http://mkhsoft.eu, и его основная функция - "This extension allows you to add your own custom website specific CSS style sheets.".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения AddCSS

Скачайте файлы расширений AddCSS в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

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