chrome中的自定义协议处理程序

时间:2011-08-17 03:48:22

标签: google-chrome-extension custom-protocol

如何在chrome中设置自定义协议处理程序?类似的东西:

myprotocol:// testfile的

我需要将此请求发送到http://example.com?query=testfile,然后将httpresponse发送到我的扩展程序。

7 个答案:

答案 0 :(得分:62)

以下方法将应用程序注册到URI Scheme。因此,您可以在HTML代码中使用 mycustproto:来触发本地应用程序。它适用于Google Chrome版本51.0.2704.79 m(64位)。

我主要使用此方法静默打印文档,而不会弹出打印对话框。结果非常好,是将外部应用程序与浏览器集成的无缝解决方案。

HTML代码(简单):

<a href="mycustproto:Hello World">Click Me</a>

HTML代码(替代方案):

<input id="DealerName" />
<button id="PrintBtn"></button>

$('#PrintBtn').on('click', function(event){
  event.preventDefault();
  window.location.href = 'mycustproto:dealer ' + $('#DealerName').val();
});

URI Scheme将如下所示:

您可以在注册表中手动创建URI Scheme,或运行&#34; mycustproto.reg&#34;文件(见下文)。

HKEY_CURRENT_USER\Software\Classes
   mycustproto
      (Default) = "URL:MyCustProto Protocol"
      URL Protocol = ""
      DefaultIcon
         (Default) = "myprogram.exe,1"
      shell
         open
            command
               (Default) = "C:\Program Files\MyProgram\myprogram.exe" "%1"

mycustproto.reg示例:

Windows Registry Editor Version 5.00

[HKEY_CURRENT_USER\Software\Classes\mycustproto]
"URL Protocol"="\"\""
@="\"URL:MyCustProto Protocol\""

[HKEY_CURRENT_USER\Software\Classes\mycustproto\DefaultIcon]
@="\"mycustproto.exe,1\""

[HKEY_CURRENT_USER\Software\Classes\mycustproto\shell]

[HKEY_CURRENT_USER\Software\Classes\mycustproto\shell\open]

[HKEY_CURRENT_USER\Software\Classes\mycustproto\shell\open\command]
@="\"C:\\Program Files\\MyProgram\\myprogram.exe\" \"%1\""

C#控制台应用程序 - myprogram.exe:

using System;
using System.Collections.Generic;
using System.Text;

namespace myprogram
{
  class Program
  {
    static string ProcessInput(string s)
    {
       // TODO Verify and validate the input 
       // string as appropriate for your application.
       return s;
    }

    static void Main(string[] args)
    {
      Console.WriteLine("Raw command-line: \n\t" + Environment.CommandLine);
      Console.WriteLine("\n\nArguments:\n");

      foreach (string s in args)
      {
        Console.WriteLine("\t" + ProcessInput(s));
      }

      Console.WriteLine("\nPress any key to continue...");
      Console.ReadKey();
    }
  }
}

首先尝试运行程序以确保程序已放置在正确的路径中:

cmd> "C:\Program Files\MyProgram\myprogram.exe" "mycustproto:Hello World"

点击HTML页面上的链接:

您将第一次看到弹出警告窗口。

enter image description here

重置Chrome中的外部协议处理程序设置:

如果您曾在Chrome中接受自定义协议并希望重置设置,请执行此操作(目前,Chrome中没有用于更改设置的用户界面):

编辑&#34; 本地州&#34;这个路径下的这个文件:

C:\Users\Username\AppData\Local\Google\Chrome\User Data\

或者只需转到:

%USERPROFILE%\AppData\Local\Google\Chrome\User Data\

然后,搜索此字符串: protocol_handler

您将从那里看到自定义协议。

注意:在编辑文件之前,请关闭Google Chrome。否则,您所做的更改将被Chrome覆盖。

<强>参考:

https://msdn.microsoft.com/en-us/library/aa767914(v=vs.85).aspx

答案 1 :(得分:52)

Chrome 13现在支持navigator.registerProtocolHandler API。例如,

navigator.registerProtocolHandler(
    'web+custom', 'http://example.com/rph?q=%s', 'My App');

请注意,您的协议名称必须以web+开头,但常见的一些例外情况(例如mailto等)。有关详细信息,请参阅:http://updates.html5rocks.com/2011/06/Registering-a-custom-protocol-handler

答案 2 :(得分:26)

这个问题现在已经过时了,但Chrome最近有一次更新(至少在打包的应用程序方面)......

http://developer.chrome.com/apps/manifest/url_handlers

https://github.com/GoogleChrome/chrome-app-samples/tree/master/samples/url-handler

它允许您注册URL的处理程序(只要您拥有它)。遗憾的是没有myprotocol://,但至少你可以http://myprotocol.mysite.com,并且可以在那里创建一个网页,将人们指向应用商店中的应用。

答案 3 :(得分:6)

这就是我做的。您的应用程序需要在安装时安装一些注册表项,然后在任何浏览器中,您只需链接到foo:\ anythingHere.txt,它将打开您的应用程序并将其传递给该值。

这不是我的代码,只是我在搜索相同问题时在网上找到的内容。只需将下面文本中的所有“foo”更改为您想要的协议名称,并将路径更改为您的exe。

(将其放入文本文件中,保存为桌面上的foo.reg,然后双击它以安装密钥) -----在这行下面进入.reg文件(不包括这一行)------

REGEDIT4

[HKEY_CLASSES_ROOT\foo]
@="URL:foo Protocol"
"URL Protocol"=""

[HKEY_CLASSES_ROOT\foo\shell]

[HKEY_CLASSES_ROOT\foo\shell\open]

[HKEY_CLASSES_ROOT\foo\shell\open\command]
@="\"C:\\Program Files (x86)\\Notepad++\\notepad++.exe\" \"%1\"" 

答案 4 :(得分:0)

打开

C:\Users\<Username>\AppData\Local\Google\Chrome\User Data\Default

打开Preferences,然后搜索excluded_schemes,您会在'protocol_handler'中找到它。删除此排除的方案,以重置chrome以使用默认应用程序打开网址

答案 5 :(得分:0)

不确定这是否是我的答案的正确位置,但是由于发现有用的线程很少,而且这是其中之一,因此我将解决方案发布在这里。

问题:我想让Linux Mint 19.2 Cinnamon在Chromium中单击mailto链接时打开Evolution。 Gmail已在chrome://settings/handlers中注册为默认处理程序,我无法选择其他任何处理程序。

解决方案: 在控制台中使用xdg设置

xdg-settings set default-url-scheme-handler mailto org.gnome.Evolution.desktop

在这里https://alt.os.linux.ubuntu.narkive.com/U3Gy7inF/kubuntu-mailto-links-in-chrome-doesn-t-open-evolution找到了一种解决方案,并适合我的情况。

答案 6 :(得分:0)

我发现 Jun Hsieh 和 MuffinMan 的解决方案通常适用于在 Chrome 中点击页面上的链接或粘贴到 URL 栏中,但它似乎在在命令行上传递字符串的特定情况。

例如,以下两个命令都会打开一个空白的 Chrome 窗口,然后什么也不做。

"c:\Program Files (x86)\Google\Chrome\Application\chrome.exe" "foo://C:/test.txt"
"c:\Program Files (x86)\Google\Chrome\Application\chrome.exe" --new-window "foo://C:/test.txt"

为了进行比较,使用这些命令中的任何一个向 Chrome 提供 http 或 https URL 都会导致网页被打开。

这很明显,因为我们的一位客户报告说,当 Chrome 是默认浏览器时,从 Adob​​e Reader 中显示的 PDF 单击我们产品的链接无法调用我们的产品。 (默认情况下 MSIE 和 Firefox 可以正常工作,但默认情况下 Chrome 或 Edge 则不行。)

我猜想,Adobe 产品不是只是告诉 Windows 调用 URL 并让 Windows 解决问题,而是要查找默认浏览器,在本例中为 Chrome,然后在命令行上传递 URL。

如果有人知道 Chrome 安全性或其他可能与此处相关的设置,我会很感兴趣,以便 Chrome 能够完全处理协议处理程序,即使它是通过命令行提供的。我一直在寻找,但到目前为止还没有找到任何东西。

我一直在针对 Chrome 88.0.4324.182 对此进行测试。