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文件

下载Switch Domain扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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"
    }
}