代码之家  ›  专栏  ›  技术社区  ›  esqew

谷歌Chrome内容脚本中的jQuery?

  •  45
  • esqew  · 技术社区  · 14 年前

    我该如何在我的googlechrome内容脚本中包含jQuery库呢?我试过了,当然没有结果。我应该用吗 <script src="..." /></script> ,还是有其他更好的方法?提前谢谢!

    2 回复  |  直到 14 年前
        1
  •  76
  •   Grant    14 年前

    {
      "name": "MyExtension",
      "version": "0.1",
      "description": "blah blah",
      "background_page": "background.html",
      "content_scripts": [
        {
          "matches": ["http://*/*","https://*/*"],
          "css": ["extension.css"],
          "js": ["jquery-1.4.2.js", "extension.js"]
        }
      ]
    }
    
        2
  •  1
  •   Community miroxlav    7 年前

    以上答案是有效的。另一个使用注入的答案(这是我第一次找到这一页时真正寻找的答案)如下:

    Google Chrome Extensions: How to include jQuery in programmatically injected content script?