mirror of
https://github.com/mdn/webextensions-examples.git
synced 2026-04-20 08:13:41 +02:00
9 lines
187 B
JavaScript
9 lines
187 B
JavaScript
window.addEventListener("click", notifyExtension);
|
|
|
|
function notifyExtension(e) {
|
|
if (e.target.tagName != "A") {
|
|
return;
|
|
}
|
|
chrome.runtime.sendMessage({"url": e.target.href});
|
|
}
|