Sitecore Edit Assistant

Enables Content Authors to navigate from Website(CD) straight to associated content in Sitecore(CM) seamlessly

Sitecore Edit Assistant là gì?

Sitecore Edit Assistant là một tiện ích mở rộng Chrome được phát triển bởi Subramanian Ramanathan(Subbu), và tính năng chính của nó là "Enables Content Authors to navigate from Website(CD) straight to associated content in Sitecore(CM) seamlessly".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Sitecore Edit Assistant

Tải xuống các tệp mở rộng Sitecore Edit Assistant dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        This Extension enables the content authors to open associated content in Sitecore(Content Management) straight from the Website pages(Content Delivery)

To launch associated Experience Editor, Content Editor or Horizon links, you must right-click on the intended website page and select 'Sitecore Edit Assistant' to choose your preferred editing option as shown in the screenshot. You will be asked to provide the authoring/CM host url, which will be stored in your local browser storage for subsequent requests.

This extension also includes few shortcuts to accelerate the authoring process,

Ctrl+Shift+X - Edit In Experience Editor
Ctrl+Shift+E - Edit In Content Editor
Ctrl+Shift+H - Edit in Horizon
Ctrl+Shift+I - View Page Insights

Above default shortcuts can be modified from chrome://extensions/shortcuts if required

IMPORTANT: For Multi-site implementation, you may experience the below issues if the site is not auto-resolving as expected,

'Edit in Content Editor' might redirect to Sitecore login page again even if user is already authenticated.
'Edit in Experience Editor' might redirect to 404 Page Not Found Error.

To mitigate this issue, you need to right-click and select the 'Additional Settings (Multi-Site)' option to mention the associated site's name as specified in your site config(if non-SXA site) or /sitecore/content///Settings/Site Grouping/ item(if SXA site). Alternatively, if you do not have access to site configuration, you can preview a page item from Sitecore Content Editor and obtain the site name from 'sc_site' querystring of the preview url.

NOTE: 'Edit in Content Editor' can find the associated item only when you are logged in to Sitecore. It might redirect you to Sitecore login page in case if you're not logged in and you may want to try 'Edit in Content Editor' button again after logging in.

Thank you for using this extension!                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Sitecore Edit Assistant Sitecore Edit Assistant
ID emkolbomldfncgblndogaokbbkfibbpb
URL Chính Thức https://chromewebstore.google.com/detail/sitecore-edit-assistant/emkolbomldfncgblndogaokbbkfibbpb
Mô tả Enables Content Authors to navigate from Website(CD) straight to associated content in Sitecore(CM) seamlessly
Kích Thước Tệp 213 KB
Số Lần Cài Đặt 55
Phiên Bản Hiện Tại 1.2
Cập Nhật Lần Cuối 2021-05-16
Ngày Phát Hành 2021-05-10
Nhà Phát Triển Subramanian Ramanathan(Subbu)
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://subbu.ca
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Sitecore Edit Assistant",
    "version": "1.2",
    "manifest_version": 2,
    "description": "Enables Content Authors to navigate from Website(CD) straight to associated content in Sitecore(CM) seamlessly",
    "icons": {
        "128": "images\/pencil-large.png",
        "48": "images\/pencil-small.png"
    },
    "background": {
        "page": "background.html",
        "persistent": false
    },
    "permissions": [
        "contextMenus",
        "storage",
        "notifications",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "options_ui": {
        "page": "options\/options.html",
        "chrome_style": false
    },
    "browser_action": {
        "default_popup": "options\/options.html",
        "default_title": "Sitecore Edit Assistant (options)",
        "default_icon": "images\/pencil-large.png"
    },
    "web_accessible_resources": [
        "images\/*",
        "css\/*",
        "js\/*",
        "options\/*"
    ],
    "commands": {
        "editInExperienceEditor": {
            "suggested_key": {
                "default": "Ctrl+Shift+X"
            },
            "description": "Edit In Experience Editor"
        },
        "editInHorizon": {
            "suggested_key": {
                "default": "Ctrl+Shift+H"
            },
            "description": "Edit in Horizon"
        },
        "editInContentEditor": {
            "suggested_key": {
                "default": "Ctrl+Shift+E"
            },
            "description": "Edit In Content Editor"
        },
        "viewPageInsights": {
            "suggested_key": {
                "default": "Ctrl+Shift+I"
            },
            "description": "View Page Insights"
        }
    }
}