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是由mikeylikesit开发的Chrome扩展程序,该扩展的主要功能是“Two buttons to collapse or expand all visible sections within the content editor and template manager interfaces.”。

下载Sitecore Expand Collapse Sections扩展crx文件

下载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"
    ]
}