問題タブ [manifest.json]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
javascript - Chrome Extrensions Share Script variables
I am working on a chrome extension that has 2 script files. One is attached to the manifest.json
as content_scripts
(page script). And I also have a script file attached to my add-on popup.html
file(add-on script).
When I declare a var
in my page script then I try calling it in my add-on script and I get undeclared varible
.
Can can I get communications between the two scripts? Because if I try doing it all in one then it can not access the elements of the opposite page.
google-chrome-extension - 親 URL が一致する場合にのみ、コンテンツ スクリプトがすべてのフレームに挿入されるようにするにはどうすればよいですか?
ページにiframeがあります。私の要件は、メイン フレーム (オムニ バーの URL) が特定の URL と一致する場合にのみ、ページ内のすべてのフレームにコンテンツ スクリプトを挿入することです。
developer.chrome.com/extensions/content_scripts 方法がわかりません。目標を達成する方法を教えてもらえますか?