You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
 
 
 

18 lines
474 B

const initialize = (url) => {
let p = document.createElement("p");
p.textContent = "Hello Vim Vixen";
p.style.position = 'fixed';
p.style.right = '0';
p.style.bottom = '0';
p.style.padding = '0rem .5rem';
p.style.margin = '0';
p.style.backgroundColor = 'lightgray';
p.style.border = 'gray';
p.style.boxShadow = '0 0 2px gray inset';
p.style.borderRadius = '3px';
p.style.fontFamily = 'monospace';
document.body.append(p)
}
export { initialize };