前提・実現したいこと
Google拡張機能開発において、
ページ遷移後サイトのDOMを取得し、前のページに戻る処理を実装したい。
とりあえず2つのファイル間での通信を正しく行いたい
chrome拡張機能開発を初めて行っていて、知識もあんまりないので困っています、、、
発生している問題・エラーメッセージ
遷移まではするが、DOM要素の取得が行えてない。 エラーメッセージは色々あるが例えば下記のようなものが出ている(Background.js側でのエラー) Unchecked runtime.lastError: Could not establish connection. Receiving end does not exist.
該当のソースコード
Contentscript.js
1... 2... 3//1番目の処理 background.jsにsendmessageする 4chrome.runtime.sendMessage({ message: "move_page" }, function(res){console.log(res)} ) 5... 6... 7//3番目の処理 DOMを見て条件に当てはまったらブラウザバック 8chrome.runtime.onMessage.addListener(function(request, sender, callback){ 9 if (request.message == "check"){ 10 if ($(".hoge").text().indexOf("hogehoge") != -1) { 11 chrome.runtime.sendMessage({ message: "back" }, function(res){console.log(res)} ) 12 } 13 } 14});
Background.js
1//2、4番目の処理 2chrome.runtime.onMessage.addListener(function(request,sender,sendResponse){ 3 switch(request.message) { 4 case "move_page": 5 chrome.tabs.update({url: '遷移先のURL'}, function(tabs) { 6 chrome.tabs.sendMessage( tabs.id, { message:"check" }, function(response) {} ); 7 break; 8 9 case "back": 10 chrome.tabs.update({url: '戻り先のURL'}, function(tabs) {}; 11 } 12});
試したこと
記述する場所をContentscript.jsやBackground.jsで変えてみたりしたが動かなかった
あなたの回答
tips
プレビュー