-1

forge でアプリを作成し、chrome 拡張機能を追加しましたが、chrome で実行すると、常に次のエラーが表示されます。

Currently it is not possible to launch a Chrome extension via this interface.
The required steps are:

    1) Go to chrome:extensions in the Chrome browser
    2) Make sure "developer mode" is on (top right corner)')
    3) Use "Load unpacked extension" and browse to D:\mobile-app\test/development/chrome

しかし、私は実際に上記の手順を実行しましたが、何が起こるかわかりません。

Android SDKと解像度シミュレーターの違いをテストで使用するにはどうすればよいですか?

ありがとう!

4

2 に答える 2

2

Chromeには、ブラウザ拡張機能を自動的にインストールする方法はありません。したがって、拡張機能を手動でインストールする必要があります。

これを行うには、Chromeで(下の画像を参照):

  1. アドレスバーに「chrome:extensions」と入力します
  2. 開発者モードをオンにする
  3. [解凍した拡張機能を読み込む]をクリックします

Chrome拡張機能をインストールする方法

Android SDKについて別の質問がある場合は、別のスレッドで質問するか、support@trigger.ioに連絡することをお勧めします。

于 2012-06-15T10:03:00.967 に答える
-1

I had the same issue, using:

forge run chrome

to try to run the app in the Chrome web browser. I thought the 3 steps given were to install an extension which would then allow forge run chrome to launch the web application. I couldn't understand why, after installing the extension (with no button defined of course), nothing seemed to change. I didn't realise a Chrome extension version of my app, appearing on the toolbar, was even possible!

I should have used:

forge run web

to launch the app in the (default) browser.

于 2012-07-10T15:19:14.070 に答える