Steam Cleaner

The first extension that I made.

Что такое Steam Cleaner?

Steam Cleaner - это расширение Chrome, разработанное Adam Shaw, и его основная функция - "The first extension that I made.".

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

screenshot

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

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

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

                        Cleans up Steam Greenlight pages (removing extra banners) and adds "Vote Down and Next item" button.

More features to come in the future.                    

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

Название Steam Cleaner Steam Cleaner
ID blocallakhfbheckclfcjhechmkpeibe
Официальный URL https://chromewebstore.google.com/detail/steam-cleaner/blocallakhfbheckclfcjhechmkpeibe
Описание The first extension that I made.
Размер файла 16.21 KB
Количество установок 394
Текущая Версия 1.0
Последнее Обновление 2012-11-15
Дата публикации 2012-11-14
Рейтинг 3.50/5 Всего 2 оценок
Разработчик Adam Shaw
Тип оплаты free
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Steam Cleaner",
    "version": "1.0",
    "manifest_version": 2,
    "description": "The first extension that I made.",
    "browser_action": {
        "default_icon": "icon.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*.steamcommunity.com\/*",
                "http:\/\/steamcommunity.com\/*",
                "http:\/\/*.steampowered.com\/*"
            ],
            "js": [
                "contentscript.js"
            ],
            "run_at": "document_idle",
            "all_frames": false
        }
    ]
}