mirror of
https://github.com/mdn/webextensions-examples.git
synced 2026-04-20 00:04:14 +02:00
Added an example for contentScripts.register (#325)
* Added an example for contentScripts.register * Use messaging instead of getBackgroundPage
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
'use strict';
|
||||
|
||||
const hostsInput = document.querySelector("#hosts");
|
||||
const codeInput = document.querySelector("#code");
|
||||
|
||||
const defaultHosts = "*://*.org/*";
|
||||
const defaultCode = "document.body.innerHTML = '<h1>This page has been eaten<h1>'";
|
||||
|
||||
hostsInput.value = defaultHosts;
|
||||
codeInput.value = defaultCode;
|
||||
|
||||
function registerScript() {
|
||||
browser.runtime.sendMessage({
|
||||
hosts: hostsInput.value.split(","),
|
||||
code: codeInput.value
|
||||
});
|
||||
}
|
||||
|
||||
document.querySelector("#register").addEventListener('click', registerScript);
|
||||
Reference in New Issue
Block a user