Chrome拡張機能コンテンツスクリプトからpopup.htmlにデータを送信する方法
これは多くの投稿で質問されていることは知っていますが、正直なところ、それらを取得できません。私はJavaScriptやChrome拡張機能などすべてに不慣れで、このクラスを割り当てられています。したがって、クロスドメインリクエストを使用して、特定のページのDOMオブジェクトをカウントするプラグインを作成する必要があります。これまで、Chrome Extension APIを使用してこれを達成することができました。ここでの問題は、contentScript.jsファイルから私のpopup.htmlページにデータを表示する必要があることです。ドキュメントを読んでみたが、どうすればいいのかわからないが、Chromeでのメッセージ送信で何をすべきか理解できない。 以下はこれまでのコードです。 manifest.json { "manifest_version":2, "name":"Dom Reader", "description":"Counts Dom Objects", "version":"1.0", "page_action": { "default_icon":"icon.png", "default_title":"Dom Reader", "default_popup":"popup.html" }, "background":{ "scripts":["eventPage.js"], "persistent":false }, "content_scripts":[ { "matches":["http://pluralsight.com/training/Courses/*", "http://pluralsight.com/training/Authors/Details/*", "https://www.youtube.com/user/*", "https://sites.google.com/site/*", "http://127.0.0.1:3667/popup.html"], "js":["domReader_cs.js","jquery-1.10.2.js"] //"css":["pluralsight_cs.css"] } ], "permissions":[ "tabs", "http://pluralsight.com/*", "http://youtube.com/*", "https://sites.google.com/*", "http://127.0.0.1:3667/*" ] popup.html <!doctype html> <html> <title> Dom Reader </title> …