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によって開発されたChromeの拡張機能で、その主な機能は「This extension allows you to toggle between AEMs 'View as Published' and authoring view.」です。
拡張機能のスクリーンショット
AEM View as Published Shortcut拡張機能のCRXファイルをダウンロード
AEM View as Published Shortcut拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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'" } |