-
~ ❯ defaults read com.google.Chrome
{
ExtensionInstallAllowlist = (
dmmjlmbkigbgpnjfiimhlnbnmppjhpea
);
} 但仍然提示 This extension is not listed in the Chrome Web Store and may have been added without your knowledge. |
Beta Was this translation helpful? Give feedback.
Replies: 7 comments 8 replies
-
原因是 defaults 写入的 policy 并非 mandatory... 可通过写入 保存为 <?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>ExtensionInstallAllowlist</key>
<array>
<string>dmmjlmbkigbgpnjfiimhlnbnmppjhpea</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> 相关链接 |
Beta Was this translation helpful? Give feedback.
-
mobileconfig安装过程中,需要手动打开 系统偏好设置 ,选择描述文件安装。有没有更智能些,直接安装成功。 |
Beta Was this translation helpful? Give feedback.
-
这是Google浏览器的解决办法,Edge浏览器有没有 |
Beta Was this translation helpful? Give feedback.
-
发一个 edge 的给需要的朋友: |
Beta Was this translation helpful? Give feedback.
-
如果您的文本编辑器中没有“Unicode (UTF-8)”选项,则可以尝试使用以下步骤保存Mobileconfig文件: 在Mac上打开文本编辑器(TextEdit)。 将该代码复制并粘贴到文本编辑器中。 在文本编辑器中,单击“Format”菜单,然后选择“Make Plain Text”。 在弹出窗口中单击“OK”。 然后单击“File”菜单,选择“Save As”。 在“Save As”对话框中,选择“Desktop”文件夹作为保存位置。 在“Name”字段中输入文件名,并在文件名后添加“.mobileconfig”扩展名。例如:“ChromeSettings.mobileconfig”。 在“File Format”选项中,选择“UTF-8”选项,并单击“Save”按钮。 您现在可以使用Apple Configurator或移动设备管理(MDM)将Mobileconfig文件部署到iOS设备上。 请注意,Mobileconfig文件只能通过移动设备管理(MDM)或Apple Configurator部署到iOS设备上。如果您没有MDM或Apple Configurator,则无法部署Mobileconfig文件。 |
Beta Was this translation helpful? Give feedback.
-
现在的问题是,chrome在mac下经常遇到chrome helper导致的cpu占用率爆表,改用chome内核的brave之后,菜单里找不到“由贵组织管理”,chome还是正常的。 |
Beta Was this translation helpful? Give feedback.
-
这是唯一的解决方法了吗?不想搞一个 MDM Profile |
Beta Was this translation helpful? Give feedback.
原因是 defaults 写入的 policy 并非 mandatory... 可通过写入
/Library/Managed Preferences/com.google.Chrome.plist
或安装下面的这个 描述文件来设置成 mandatory保存为
foobar.mobileconfig
, 安装,在 Preference -> Profile 中激活即可