Switch Domain

This extension adds a page action menu to switch domains for Adobe AEM/CQ and other large projects

Switch Domain란 무엇입니까?

Switch Domain은(는) clanceyp에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension adds a page action menu to switch domains for Adobe AEM/CQ and other large projects"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Switch Domain 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Switch domain extension adds links to the page action menu. It uses simple regular expressions to enable you to match domains and replace sections of the URL. 

This extension was developed for use when on large projects with many servers and URLs. For example in AEM (formally Adobe CQ) you may want to jump from the current page to the same page in the Editor, CRXDE, on the Dispatcher, direct in Publisher or jump to the correct place AEM explorer in multiple stacks. 

For smaller projects I recommend jmhobbs's Domain Swap extension https://chrome.google.com/webstore/detail/domain-swap/ngiiihlebepigjbefembddhdplmaghep                    

확장 프로그램 기본 정보

이름 Switch Domain Switch Domain
ID ocpldckjfkofbopolilicgjopippfmbc
공식 URL https://chromewebstore.google.com/detail/switch-domain/ocpldckjfkofbopolilicgjopippfmbc
설명 This extension adds a page action menu to switch domains for Adobe AEM/CQ and other large projects
파일 크기 145 KB
설치 횟수 87
현재 버전 2.3.0
최근 업데이트 2020-02-20
출시 날짜 2020-02-19
평점 5.00/5 총 1 개의 평점
개발자 clanceyp
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "2.3.0",
    "manifest_version": 2,
    "name": "Switch Domain",
    "short_name": "Switch Domain",
    "description": "This extension adds a page action menu to switch domains for Adobe AEM\/CQ and other large projects",
    "homepage_url": "https:\/\/github.com\/clanceyp\/chrome-extension-domain-switcher",
    "permissions": [
        "activeTab"
    ],
    "options_page": "options\/index.html",
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "background": {
        "scripts": [
            "domainSwitcher.js",
            "background.js",
            "options\/js\/manifest.js",
            "options\/js\/vendor\/underscore.js",
            "options\/js\/vendor\/zepto.js",
            "options\/js\/background.js"
        ]
    },
    "icons": {
        "48": "\/lib\/icon\/swap.png"
    },
    "browser_action": {
        "default_icon": "\/lib\/icon\/swap.png",
        "default_title": "Switch Domain",
        "default_popup": "popup.html"
    }
}