Answers:
转到chrome://settings/searchEngines
,将F12其粘贴到“控制台”选项卡中:
settings.SearchEnginesBrowserProxyImpl.prototype.getSearchEnginesList()
.then(function(val) {
val.others.sort(function(a, b) { return b.modelIndex - a.modelIndex; });
val.others.forEach(function(engine) {
settings.SearchEnginesBrowserProxyImpl.prototype.removeSearchEngine(engine.modelIndex);
});
});
感谢酒精为材料设计更新了此代码。
注意:您也可以通过OSX 上的Option+ Command+ 访问Javascript控制台J。实际上,您可能需要多次运行才能完全清除设置区域“其他搜索引擎...”部分下列出的所有搜索引擎。
querySelector
方法似乎不适用于新的Material-UI。我想出了以下解决方案:settings.SearchEnginesBrowserProxyImpl.prototype.getSearchEnginesList().then(function (val) { val.others.forEach(function (engine) { settings.SearchEnginesBrowserProxyImpl.prototype.removeSearchEngine(engine.modelIndex); }); });