Sitecore Expand Collapse Sections

Two buttons to collapse or expand all visible sections within the content editor and template manager interfaces.

Что такое Sitecore Expand Collapse Sections?

Sitecore Expand Collapse Sections - это расширение Chrome, разработанное mikeylikesit, и его основная функция - "Two buttons to collapse or expand all visible sections within the content editor and template manager interfaces.".

Скачать файл CRX расширения Sitecore Expand Collapse Sections

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

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

                                            

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

Название Sitecore Expand Collapse Sections Sitecore Expand Collapse Sections
ID eacfcbgebkjlkaabpmebcfnmhmigfbjc
Официальный URL https://chrome.google.com/webstore/detail/sitecore-expand-collapse/eacfcbgebkjlkaabpmebcfnmhmigfbjc
Описание Two buttons to collapse or expand all visible sections within the content editor and template manager interfaces.
Размер файла 69.77 KB
Количество установок 177
Текущая Версия 1.1
Последнее Обновление 2016-03-26
Дата публикации 2016-03-26
Рейтинг 4.00/5 Всего 4 оценок
Разработчик mikeylikesit
Тип оплаты free
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Sitecore Expand Collapse Sections",
    "short_name": "SitecoreExpandCollapse",
    "description": "Two buttons to collapse or expand all visible sections within the content editor and template manager interfaces.",
    "version": "1.1",
    "author": "Mike Thompson",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/sitecore*",
                "https:\/\/*\/sitecore*"
            ],
            "js": [
                "ExpandCollapse.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": {
            "19": "sitecore_logo.png"
        },
        "default_title": "Sitecore Expand\/Collapse",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "web_accessible_resources": [
        "jquery-1.10.2.min.js",
        "ExpandCollapse.js"
    ]
}