AEM View as Published Shortcut
This extension allows you to toggle between AEMs 'View as Published' and authoring view.
AEM View as Published Shortcut क्या है?
AEM View as Published Shortcut https://www.eduardovargas.engineer द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension allows you to toggle between AEMs 'View as Published' and authoring view."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में AEM View as Published Shortcut एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
This extension is meant to enable AEM authors to quickly access the 'View as Published' site preview. Once the extension is installed, we recommend that you visit the URL chrome://extensions/shortcuts and assign a keyboard shortcut to the extension for increased productivity. See the second screenshot for an example.
एक्सटेंशन की मूल जानकारी
नाम | AEM View as Published Shortcut |
ID | ljnpkkdpjldjbaijkclhafiihonlkinm |
आधिकारिक URL | https://chromewebstore.google.com/detail/aem-view-as-published-sho/ljnpkkdpjldjbaijkclhafiihonlkinm |
विवरण | This extension allows you to toggle between AEMs 'View as Published' and authoring view. |
फ़ाइल का आकार | 132 KB |
स्थापना संख्या | 37 |
वर्तमान संस्करण | 0.0.7 |
अंतिम अपडेट | 2019-03-11 |
प्रकाशन तिथि | 2019-03-11 |
रेटिंग | 5.00/5 कुल 2 रेटिंग्स |
डेवलपर | https://www.eduardovargas.engineer |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "AEM View as Published Shortcut", "short_name": "View as Published", "description": "This extension allows you to toggle between AEMs 'View as Published' and authoring view.", "version": "0.0.7", "browser_action": { "default_title": "AEM View as Published", "default_icon": "images\/icon38.png", "default_popup": "html\/popup.html" }, "permissions": [ "activeTab", "tabs" ], "background": { "persistent": false, "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/*.adobemsbasic.com\/*", "https:\/\/*.adobemsbasic.com\/*" ], "js": [ ".\/js\/content.js" ], "run_at": "document_end" } ], "icons": { "16": "images\/dev16.png", "48": "images\/dev48.png", "128": "images\/dev128.png" }, "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'" } |