6

我的 chrome 扩展后台脚本没有被加载。我为他们遵循了谷歌的指南,但仍然没有。我不确定是否有另一种检查方法,但它不在 Inspect Element 中,并且脚本应该执行的操作没有发生。

http://developer.chrome.com/extensions/background_pages.html

manifest.json 文件

{
"manifest_version": 2,

"name": "WebDevFriend",
"description": "blah blah blah",
"version": "1.0",

"permissions": [
    "bookmarks",
    "tabs",
    "http://*/*"    ],  

"background": {
    "scripts": ["js/settings.js"],
},

"browser_action": {
    "default_icon": "images/icon.png",
    "default_popup": "html/popup.html"
}
}

settings.js 文件

chrome.windows.onCreated.addListener(function(window){
  chrome.windows.getAll(function(windows){
      var length = windows.length;
      if (length == 2) {
          chrome.tabs.executeScript(null, {file: "content_script.js"});
      }
  });
});
document.write('hello');
4

1 回答 1

5

首先,您不能像普通的 html 页面那样查看背景页面。唯一的方法是使用 Chrome 开发者工具查看其内容。

在此处输入图像描述

只需单击generated_background_page.html浏览器的扩展部分。

其次使用console.log()语句来记录消息。

于 2013-03-13T17:18:48.370 回答