• 将非官方扩展程序加入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

  • 相关阅读:
    循环排序总结
    # 区间合并总结
    快慢指针
    #双指针总结
    滑动窗口总结
    leetcode 第 221 场周赛
    剑指 Offer 07. 重建二叉树
    leetcode 406. 根据身高重建队列
    [JLOI2014]松鼠的新家 T22 D71
    软件包管理器 T21 D71
  • 原文地址:https://www.cnblogs.com/qqcc1388/p/6703863.html
Copyright © 2020-2023  润新知