不能使用注入的jQuery

时间:2015-01-28 16:37:47

标签: javascript jquery google-chrome-extension

我想将jQuery注入Chrome扩展程序中的网页(带内容脚本)。

我试试,但有些事让我感到困惑。

这是我的manifest.json

{
    "name": "test",
    "description": "test content script.",
    "version": "0.0.1",
    "background": {
        "scripts": ["jquery-1.10.2.js", "popup.js"]
    },
    "permissions": ["tabs", "notifications", "http://*/*", "https://*/*"],
    "browser_action": {
        "default_title": "test",
        "default_icon": "icon.png"
    },
    "options_page": "manage.html",
    "content_scripts": [
        {
            "matches": ["http://*/*", "https://*/*"],
            "js": ["jquery-1.10.2.js"]
        }
    ],
    "manifest_version": 2
}

的jquery-1.10.2.js

 /*jquery's orign code*/
  console.log("end of jquery");

我可以看到控制台消息,但我仍然无法使用jQuery。

我写了一个简单的网站,试图通过内容脚本包含jQuery,而不是添加<script>标记。

在开发工具控制台中,我输入window.jQuery$("li").siblings()

如果在页面中包含jQuery,它可以工作,但是如果它注入了内容脚本,它会将jQuery显示为未定义。

为什么会这样?

2 个答案:

答案 0 :(得分:1)

我用过它并且工作正常。也许你的jquery的路径不正确。

"content_scripts": [{
    "matches": ["http://*/*", "https://*/*"],
    "js": ["js/jquery.min.js", "js/socket/socket.io.js","js/socket/client.js"],
    "run_at": "document_idle"
}]

答案 1 :(得分:0)

情况与this question非常相似。

内容脚本直播in their own, isolated JavaScript context。这样做是为了使扩展程序添加的脚本不与​​页面或彼此共存。

当您打开Dev Tools控制台时,它会显示来自网页所有上下文的控制台消息:页面的上下文,iframe的上下文(也是隔离的)和内容脚本上下文。这就是您看到日志消息的原因。

但是,虽然它可以一次显示所有消息,但如果您尝试执行某些操作,则必须转到一个上下文。默认情况下,它是页面的上下文:<top frame>就在控制台上方。

要在扩展程序的上下文中执行某些操作,您需要切换到它:

Switching context

如果您想为页面上下文提供一些JavaScript,则需要将其作为<script>标记注入页面本身。请参阅this question