1

私がブラウザプラグインの方法に行きたくない理由は、あなたがそれを様々なブラウザに実装する必要があるからです。

Firefoxのxpiと同様に、IEのブラウザヘルパーオブジェクト。

私のターゲットプラットフォームはウィンドウのみであり、ユーザーがWebページをブラウザしているときに指示された後、ブラウザプラグインの代わりにクライアント側プログラムを呼び出すようにしたいだけです。

それは実行可能ですか?

4

1 に答える 1

1

The only "viable" solution would be to register a protocol handler system-wide so say addresses starting with "myprotocol://" trigger your app. Users will still need to install your program and your program will only have access to the parameters passed by that protocol handler, so you will have to evaluate on your own if it's worth it.

Also note that some browsers or settings might show a confirmation message before using your new protocol for the first time, so users should be informed on what to do (and warned that this prompt is part of the normal workings of your app).

于 2010-08-09T13:46:33.593 に答える