2

我正在尝试将本地 jquery 文件加载到 chrome 扩展中。这就是我的 manifest.json 的样子:

{
  "name": "TV",
  "version": "0.1",
  "description": "Search",
  "icons": { "128": "icon.jpg" },
    "options_page": "options.html",
  "browser_action": {
    "default_title": "TV",
    "default_icon": "icon.jpg",
    "default_popup": "popup.html"
  },
  "permissions": [
    "http://*.thetvdb.com/*", "tabs"
  ],
"content_scripts": [ {
    "matches": [ "http://*/*", "https://*/*", "*://jquery.com/*"],
    "js": [ "jquery.js", "options.js" ]
  }]
}

以及 options.js 中的函数:

function searchS(){
    console.log($)
}

并返回我:未捕获的 ReferenceError:$ 未定义

有什么建议么?谢谢!

4

0 回答 0