添加搜索服务 #

用户可以添加自定义搜索引擎来扩展上下文菜单中显示的功能。

macOS #

在大多数应用程序的上下文菜单中,都可以找到系统级的搜索引擎。

Windows / Linux #

  1. 在 Typora 中打开 Menu偏好设置,然后点击 "打开高级设置"。

  2. 在 "文件资源管理器" 中打开并编辑 conf.user.json。如果没有这样的文件,就创建一个。

  3. 修改或设置以下配置到 conf.user.json 文件中,%s 将代表选定的文本。例如。

    "searchService": [
        ["Search with Google", "https://google.com/search?q=%s"],
        ["Translate", "http://translate.google.com/?source=osdd#auto|auto|%s"]
        ["Search with Wikipedia", "https://en.wikipedia.org/wiki/Special:Search/%s"]
      ]
    

    注意

    默认配置是。

    "searchService": [
        ["Search with Google", "https://google.com/search?q=%s"],
      ]
    
  4. 重新启动 Typora,然后 searchService 的选项就可以从上下文菜单中获得。