Chrome扩展程序:允许从Intranet服务器安装(将网址列入白名单)

时间:2014-01-26 13:11:11

标签: google-chrome google-chrome-extension

在MacOS上,我在尝试从公司内部网址安装Chrome扩展程序时遇到此错误 http://intranetdomain.com/extension.crt 这是消息:

Error while trying to install chrome extension 我按照这里的说明操作: http://www.chromium.org/administrators/policy-list-3#ExtensionInstallSources

右键单击图标并选择“显示包内容”,在“应用程序”中打开我的Chrome应用程序的内容。我在以下位置导航并打开了政策文件:“resources / com.google.Chrome.manifest / Contents / Resources / com.google.Chrome.manifest”

增加了以下几行:

<dict>
    <key>pfm_description</key>
    <string></string>
    <key>pfm_name</key>
    <string>ExtensionInstallSources</string>
    <key>pfm_targets</key>
    <array>
        <string>http://localhost/*</string>
        <string>http://localhost:3000/*</string>
        <string>http://intranetdomain.com/*</string>
        <string>http://intranetdomain.com:3000/*</string>
    </array>
    <key>pfm_title</key>
    <string></string>
    <key>pfm_type</key>
    <string>array</string>
</dict>

我重新启动chrome无济于事。

有什么想法吗?

0 个答案:

没有答案