Chrome扩展程序,不与用户交互

时间:2015-07-01 08:07:29

标签: javascript google-chrome google-chrome-extension content-script chrome-native-messaging

我正在听一些表单事件(鼠标dbl点击一些元素),引发一个事件并在我的内容脚本中捕获该事件。我不需要用户与我的分机直接互动。 这是我的 page.js (内容脚本):

chrome.runtime.sendMessage( { method: e.data.methodName, cid: e.data.cbId, jparams: e.data.jsonParams, objectVersion: e.data.objectVersion, objectFile: e.data.objectFile }, function( response ) {
    if( !response ){
        //errCallback();
    }
} );

弹出窗口:

var host_name = "nativeclientapi";
var messageData = null;
var port = null;
// Listen for messages that come from the content script.
chrome.runtime.onMessage.addListener(
  function( request, sender, sendResponse ) {
    if( request) {
        messageData = request;
        alert ('hello');
        sendResponse( { res: 'done!' } );
    }
  } );

清单:

{
  "name": "MyChromeExt.Operarations",
  "version": "1.0",
  "manifest_version": 2,
  "description": "This extension calls a Native API which that API calls some operations.",
  "icons": {
    "128": "icon.png"
  },
  "permissions": [
    "nativeMessaging", "activeTab"
  ],
  "content_scripts" : [{"matches": ["http://localhost/*","https://localhost/*"], "js": ["page.js"]}]
}

为什么不调用警报?如果我将 browser_action 添加到清单并设置弹出页面,那么它可以正常工作,但我不需要与扩展程序进行任何交互。

感谢您的帮助。

2 个答案:

答案 0 :(得分:1)

  

为什么不调用警报?

因为该清单popup.js未在任何地方引用 ,并且永远不会被加载。您的扩展程序可能包含大量未使用的文件,Chrome无法猜测其中包含的内容。

浏览器/页面操作当然是UI元素。如果您不想要一个用户界面(或者想要一个持续不断的脚本,那就是#34;),您需要一个background page(或更好的event page,但请确保您了解其中的差异。)

总而言之,请查看Architecture Overview

答案 1 :(得分:0)

我修好了。只需在清单中添加一个背景页面:

{{1}}