ローカルの 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($)
}
そしてそれは私を返します: Uncaught ReferenceError: $ is not defined
助言がありますか?ありがとう!