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 είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Ankit Gubrani, και η κύρια λειτουργία του είναι "Offline WebPage Editor allows AEM authors or it's users to temporarily try content changes directly on Published pages.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Offline WebPage Editor

Λήψη αρχείων επέκτασης 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
}