CSS-Block

This extension blocks CSS, which is ugly and slows the internet down,

Что такое CSS-Block?

CSS-Block - это расширение Chrome, разработанное Kjeld Schmidt, и его основная функция - "This extension blocks CSS, which is ugly and slows the internet down,".

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        Almost all websites send nearly useless and often dangerous css-files to their users just to add flashy visual effects to a website. Not only does the CSS-code itself use up bandwidth (700Kb with more than 6000 rules on facebook), but CSS itself can load additional resources, like fonts, images and vector graphics. It can be used to hide and obscure content.

To stop this needless madness, we've created CSS-Block. Just install it and all your worries are gone. No CSS file will ever be able to bug you again.                    

Основная информация о расширении

Название CSS-Block CSS-Block
ID gmlafnjffcblkipjaelgjdgdpmgmjbfp
Официальный URL https://chromewebstore.google.com/detail/css-block/gmlafnjffcblkipjaelgjdgdpmgmjbfp
Описание This extension blocks CSS, which is ugly and slows the internet down,
Размер файла 89.78 KB
Количество установок 1,394
Текущая Версия 1.0.0
Последнее Обновление 2015-02-10
Дата публикации 2015-02-09
Рейтинг 3.20/5 Всего 10 оценок
Разработчик Kjeld Schmidt
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "CSS-Block",
    "version": "1.0.0",
    "manifest_version": 2,
    "description": "This extension blocks CSS, which is ugly and slows the internet down,",
    "homepage_url": "http:\/\/www.superfluidwebdesign.com",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "src\/bg\/background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.google.com\/*"
            ],
            "js": [
                "src\/inject\/inject.js"
            ]
        }
    ],
    "permissions": [
        "webRequest",
        "webRequestBlocking",
        ""
    ]
}