Toggle Stackoverflow sidebar

Adds a button to toggle the Stackoverflow sidebar.

Что такое Toggle Stackoverflow sidebar?

Toggle Stackoverflow sidebar - это расширение Chrome, разработанное Unknown, и его основная функция - "Adds a button to toggle the Stackoverflow sidebar.".

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

screenshot
screenshot

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

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

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

                        Hides the distracting sidebar from Stackoverflow pages, centers the main text, and creates a button for revealing the sidebar.                    

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

Название Toggle Stackoverflow sidebar Toggle Stackoverflow sidebar
ID jhgooipphocncabpmflocgdmhojmhibi
Официальный URL https://chromewebstore.google.com/detail/toggle-stackoverflow-side/jhgooipphocncabpmflocgdmhojmhibi
Описание Adds a button to toggle the Stackoverflow sidebar.
Размер файла 107 KB
Количество установок 60
Текущая Версия 1.2
Последнее Обновление 2014-12-23
Дата публикации 2014-12-22
Рейтинг 5.00/5 Всего 9 оценок
Разработчик Unknown
Тип оплаты free
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Toggle Stackoverflow sidebar",
    "manifest_version": 2,
    "version": "1.2",
    "description": "Adds a button to toggle the Stackoverflow sidebar.",
    "page_action": {
        "name": "Toggle Sidebar"
    },
    "icons": {
        "128": "icon.png",
        "48": "icon.png",
        "16": "icon.png"
    },
    "content_scripts": [
        {
            "css": [
                "jquery-ui.css"
            ],
            "js": [
                "jquery.min.js",
                "background.js",
                "jquery-ui.min.js"
            ],
            "matches": [
                "*:\/\/*.stackoverflow.com\/*"
            ]
        }
    ]
}