diff --git a/bg.js b/bg.js new file mode 100644 index 0000000..585e2ef --- /dev/null +++ b/bg.js @@ -0,0 +1,7 @@ +chrome.runtime.onConnect.addListener(function(port){ + port.onMessage.addListener(function(request) { + console.log('バックグラウンドアンドページに出力'); + + chrome.tabs.create({url:request.url}) + }); +});