Мне нужно изменить URL-адрес с определенного веб-сайта на другой.
Код, который у меня есть в моем manifest.json:
{
"name": "SafeTick",
"version": "0.1",
"manifest_version": 2,
"description": "Browse safely",
"browser_action": {
"default_icon": "icon.png",
"default_title": "SafeTick",
"default_popup": "extention.html"
},
"permissions":[
"tabs"
],
"icons": {
"128": "icon.png"
},
"content_scripts":[
{
"matches":[
"https://saac.instructure.com/*"
],
"js": ["content.js"]
}
]
}
Я пытался использовать chrome.tabs.update(undefined, {url: 'http://google.com'});
, но говорит
Uncaught TypeError: Cannot read property 'update' of undefined
at content.js:3
Заранее спасибо.