mirror of
https://github.com/mdn/webextensions-examples.git
synced 2026-04-17 06:48:37 +02:00
10 lines
236 B
JavaScript
10 lines
236 B
JavaScript
window.addEventListener("click", notifyExtension);
|
|
|
|
function notifyExtension(e) {
|
|
console.log("content script sending message");
|
|
if (e.target.tagName != "A") {
|
|
return;
|
|
}
|
|
chrome.runtime.sendMessage({"url": e.target.href});
|
|
}
|