AEM Chrome Tools

This Chrome extension will make your life as an AEM developer a bit easier. TESTED ON: - 6.3 - 6.4 FEATURES: - Environment…

AEM Chrome Tools là gì?

AEM Chrome Tools là một tiện ích mở rộng Chrome được phát triển bởi druwe.jeroen, và tính năng chính của nó là "This Chrome extension will make your life as an AEM developer a bit easier. TESTED ON: - 6.3 - 6.4 FEATURES: - Environment…".

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

screenshot

Tải xuống tệp CRX của tiện ích mở rộng AEM Chrome Tools

Tải xuống các tệp mở rộng AEM Chrome Tools 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 Chrome extension will make your life as an AEM developer a bit easier.

TESTED ON:

- 6.3
- 6.4

FEATURES:

- Environment Display
    - This feature will allow you to easily identify which environment you are working on
- Component Detail
    - This feature will allow you to easily open up the corresponding node of your component in CRX Develop.                    

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

Tên AEM Chrome Tools AEM Chrome Tools
ID eknohlknldmboegkljihbhbfgpnmmlhn
URL Chính Thức https://chromewebstore.google.com/detail/aem-chrome-tools/eknohlknldmboegkljihbhbfgpnmmlhn
Mô tả This Chrome extension will make your life as an AEM developer a bit easier. TESTED ON: - 6.3 - 6.4 FEATURES: - Environment…
Kích Thước Tệp 533 KB
Số Lần Cài Đặt 65
Phiên Bản Hiện Tại 0.2
Cập Nhật Lần Cuối 2019-03-31
Ngày Phát Hành 2019-03-29
Nhà Phát Triển druwe.jeroen
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/Jdruwe/aem-chrome-tools
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "AEM Chrome Tools",
    "version": "0.2",
    "permissions": [
        "storage",
        "notifications"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content-environment-display.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "http:\/\/*\/*editor.html*",
                "https:\/\/*\/*editor.html*"
            ],
            "js": [
                "content-component-detail.js"
            ],
            "run_at": "document_end"
        }
    ],
    "options_page": "options.html"
}