zoukankan      html  css  js  c++  java
  • 将非官方扩展程序加入chrome的白名单

    非Chrome官方扩展程序经常会无法使用,这里提供一种方法将非官方扩展程序加入到白名单的方法

    1.打开扩展Chrome扩展程序列表(chrome://extensions/)

    2.找到非官方的扩展程序 比如:百度网盘助手(可以看到扩展程序的ID)

    3.记住这个扩展程序的ID 复制下面的一段HTMl并修改value0的值为扩展程序的ID值,保存到文件名为com.google.Chrome.mobileconfig 然后双击安装即可

    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
    <plist version="1.0">
    <dict>
        <key>PayloadContent</key>
        <array>
            <dict>
                <key>PayloadContent</key>
                <dict>
                    <key>com.google.Chrome</key>
                    <dict>
                        <key>Forced</key>
                        <array>
                            <dict>
                                <key>mcx_preference_settings</key>
                                <dict>
                                    <key>ExtensionInstallWhitelist</key>
                                    <array>
                                        <string>value01</string>
                                    </array>
                                </dict>
                            </dict>
                        </array>
                    </dict>
                </dict>
                <key>PayloadEnabled</key>
                <true/>
                <key>PayloadIdentifier</key>
                <string>MCXToProfile.7e2bec75-299e-44ff-b405-628007abffff.alacarte.customsettings.bdac4880-d25f-4cdd-8472-05473f005e7e</string>
                <key>PayloadType</key>
                <string>com.apple.ManagedClient.preferences</string>
                <key>PayloadUUID</key>
                <string>bdac4880-d25f-4cdd-8472-05473f005e7e</string>
                <key>PayloadVersion</key>
                <integer>1</integer>
            </dict>
        </array>
        <key>PayloadDescription</key>
        <string>Included custom settings:
    com.google.Chrome
    </string>
        <key>PayloadDisplayName</key>
        <string>MCXToProfile: com.google.Chrome</string>
        <key>PayloadIdentifier</key>
        <string>com.google.Chrome</string>
        <key>PayloadOrganization</key>
        <string></string>
        <key>PayloadRemovalDisallowed</key>
        <true/>
        <key>PayloadScope</key>
        <string>System</string>
        <key>PayloadType</key>
        <string>Configuration</string>
        <key>PayloadUUID</key>
        <string>7e2bec75-299e-44ff-b405-628007abffff</string>
        <key>PayloadVersion</key>
        <integer>1</integer>
    </dict>
    </plist>
    

    参考来源:

    http://xclient.info/a/1ddd2a3a-d34b-b568-c0d0-c31a95f0b309.html

  • 相关阅读:
    sort uniq 命令 企业应用场景实战排序
    网络管理相关命令常用必回基础实战
    Zabbix 3.0入门到企业实战(自带模板介绍)
    jsp页面指令
    jsp九大内置对象
    如何将静态页面转化为动态页面
    转发与重定向区别
    cookie的保存时间
    登陆界面 实现思路
    卸载了mysql之后,mysql服务仍在,显示读取描述失败,错误代码2
  • 原文地址:https://www.cnblogs.com/qqcc1388/p/6703863.html
Copyright © 2011-2022 走看看