【发布时间】:2013-12-16 10:08:32
【问题描述】:
我一直在尝试运行 google 的示例 IME,但没有成功。问题是,它甚至没有执行。正如您在下面的代码中看到的,console.log 应该给我至少一行反馈,而不是:
var context_id = -1;
// Copyright 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
var ime_api = chrome.input.ime;
var context_id = -1;
console.log("Initializing IME"); //THIS LINE I EXPECT TO SEE, NO MATTER WHAT
这些是我正在使用的文件,如果您想阅读它们: http://developer.chrome.com/extensions/examples/api/input.ime/basic/main.js http://developer.chrome.com/extensions/examples/api/input.ime/basic/manifest.json
有什么想法吗?
【问题讨论】:
标签: json api google-chrome ime