adambullmer / vue-cli-plugin-browser-extension

Browser extension development plugin for vue-cli 3.0
GNU Lesser General Public License v3.0
425 stars 76 forks source link

Cannot read property 'getCurrent' of undefined" #113

Closed marvinhosea closed 3 years ago

marvinhosea commented 3 years ago

I am trying to run chrome apis in vue files but I am getting undefined on chrome. Maybe I am doing something wrong how do I manage to run chrome APIs in Vue files

chrome.windows.getCurrent(function(currentWindow) { currentWindowId = currentWindow.id; chrome.windows.getLastFocused(function(focusedWindow) { focusedWindowId = focusedWindow.id; loadWindowList(); }); }); Expect run chrome APIs

Fedora 32 Node 12

marvinhosea commented 3 years ago

Figured out that content script does not support direct tabs api