mirror of
https://github.com/arfct/itty-bitty.git
synced 2026-03-11 08:54:33 +00:00
12 lines
512 B
JavaScript
12 lines
512 B
JavaScript
|
|
let url = params.body
|
|||
|
|
let title = params.title
|
|||
|
|
loadSyle(document.currentScript.src.replace("js", "css"))
|
|||
|
|
document.body.appendChild(
|
|||
|
|
el("div", {id:"content"},
|
|||
|
|
el("a", {href:url, innerText:"Script: " + title || "Bookmarklet"}),
|
|||
|
|
el("p", {id:"emoji", innerText:"☝️"}),
|
|||
|
|
el("p", {innerText:"Drag this bookmarklet to your bookmarks / favorites to use it."}),
|
|||
|
|
el("p", {innerText:"On mobile, bookmark this page, then edit the address to remove everything to the left of 'javascript:'."})
|
|||
|
|
)
|
|||
|
|
);
|