2014-06-12 21:36:05 +08:00
|
|
|
|
define(function (require, exports, module) {
|
2014-06-26 22:24:54 +08:00
|
|
|
|
exports.targetId = window.targetExtensionId;
|
2014-06-12 21:36:05 +08:00
|
|
|
|
|
|
|
|
|
exports.sendMessage = function(m, response) {
|
|
|
|
|
if (!exports.targetId)
|
|
|
|
|
throw "extension not connected.";
|
|
|
|
|
|
|
|
|
|
chrome.runtime.sendMessage(exports.targetId, m, response || function () { });
|
|
|
|
|
};
|
2014-06-27 22:25:42 +08:00
|
|
|
|
});
|