Offline WebPage Editor

Offline WebPage Editor allows AEM authors or it's users to temporarily try content changes directly on Published pages.

什么是Offline WebPage Editor?

Offline WebPage Editor是由Ankit Gubrani开发的Chrome扩展程序,该扩展的主要功能是“Offline WebPage Editor allows AEM authors or it's users to temporarily try content changes directly on Published pages.”。

扩展截图

screenshot
screenshot

下载Offline WebPage Editor扩展crx文件

下载Offline WebPage Editor扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Offline WebPage Editor is Chrome extension for AEM authors. It allows AEM authors & other business users to temporarily try content changes directly on Published pages without opening Author instance. 

Offline WebPage Editor comes as handy tool for authors & other business users who want to try out different content variations on published pages quickly before authoring the actual changes. Offline WebPage Editor lets its users:
» Change existing text on the page
» Move images around the page
» Change or add new font styles (bold, italics) on the text
» Add new Text on the page

All the changes respect the current styling on the page, hence Offline WebPage Editor can also be used to test how would a section look when text exceeds the given height & width of a DOM element.

Note: All changes made with Office WebPage Editor are temporary, authors will have to make those changes manually in AEM author instance. Page refresh will clear all the changes.                    

扩展基本信息

名称 Offline WebPage Editor Offline WebPage Editor
ID plldjngagpbkienpplkifjkcoimkeadj
官方URL https://chromewebstore.google.com/detail/offline-webpage-editor/plldjngagpbkienpplkifjkcoimkeadj
简介 Offline WebPage Editor allows AEM authors or it's users to temporarily try content changes directly on Published pages.
文件大小 15.03 KB
安装次数 1,235
当前版本 1.2
更新时间 2019-10-07
上架时间 2019-10-06
评分 4.20/5 共5次评分
开发者 Ankit Gubrani
电子邮箱 [email protected]
付费类型 free
扩展官网 https://www.codebrains.co.in/projects/offline-webpage-editor
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Offline WebPage Editor",
    "version": "1.2",
    "description": "Offline WebPage Editor allows AEM authors or it's users to temporarily try content changes directly on Published pages.",
    "permissions": [
        "activeTab"
    ],
    "background": {
        "scripts": [
            "offline_editor_background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "offline_editor_content.js"
            ]
        }
    ],
    "browser_action": {
        "default_title": "Offline WebPage Editor",
        "default_icon": {
            "16": "icons\/webpage_editor_BW_16.png",
            "32": "icons\/webpage_editor_BW_32.png",
            "48": "icons\/webpage_editor_BW_48.png",
            "128": "icons\/webpage_editor_BW_128.png"
        }
    },
    "icons": {
        "16": "icons\/webpage_editor_BW_16.png",
        "32": "icons\/webpage_editor_BW_32.png",
        "48": "icons\/webpage_editor_BW_48.png",
        "128": "icons\/webpage_editor_BW_128.png"
    },
    "manifest_version": 2
}