I think so: www.google.com/search?q=do+javascript+bookmarklets+work+on+mobile&oq=do+javascript+bookmarklets+work+on+mobile&aqs=chrome..69i57j69i64l2.6202j0j7&sourceid=chrome&ie=UTF-8
there was a error for me and also i cant make the bookmark anyways i went to console fixed it and know it works here is the finished code (function(){ let s = document.querySelector("main svg").getBoundingClientRect(), cx = s.width / 2 + s.x, cy = s.height / 2 + s.y, r = s.width / 3, d = document.querySelector("main div"), a = 0; for (let e = 0; e < 50; e++) { a += Math.acos(1 - Math.pow(60 / r, 2) / 2); let t = Math.round(cx + r * Math.cos(a)), n = Math.round(cy + r * Math.sin(a)); if (e === 0) { d.dispatchEvent(new MouseEvent("mousedown", { clientX: t, clientY: n })); } d.dispatchEvent(new MouseEvent("mousemove", { clientX: t, clientY: n })); } d.dispatchEvent(new MouseEvent("mouseup")); })();
(function(){ let s = document.querySelector("main svg").getBoundingClientRect(), cx = s.width / 2 + s.x, cy = s.height / 2 + s.y, r = s.width / 4, // Modify the radius to change the size of the circle d = document.querySelector("main div"), a = 0; for (let e = 0; e < 50; e++) { a += Math.acos(1 - Math.pow(60 / r, 3) / 2); let t = Math.round(cx + r * Math.cos(a)), n = Math.round(cy + r * Math.sin(a)); if (e === 0) { d.dispatchEvent(new MouseEvent("mousedown", { clientX: t, clientY: n })); } d.dispatchEvent(new MouseEvent("mousemove", { clientX: t, clientY: n })); } d.dispatchEvent(new MouseEvent("mouseup")); })();
@@n_o_b_o_d_y. 99.9: (function(){ const svg = document.querySelector("main svg"); const s = svg.getBoundingClientRect(); const cx = s.width / 2 + s.x; const cy = s.height / 2 + s.y; const r = s.width / 5; const d = document.querySelector("main div"); let a = 0;
for (let e = 0; e < 50; e++) { a += Math.acos(1 - Math.pow(60 / r, 3) / 2); let t = Math.round(cx + r * Math.cos(a)); let n = Math.round(cy + r * Math.sin(a));
if (e === 0) { d.dispatchEvent(new MouseEvent("mousedown", { clientX: t, clientY: n })); }
d.dispatchEvent(new MouseEvent("mousemove", { clientX: t, clientY: n })); }
javascript:(function()%7Blet%20s%3Ddocument.querySelector(%22main%20svg%22).getBoundingClientRect()%2Ccx%3Ds.width%2F2%2Bs.x%2Ccy%3Ds.height%2F2%2Bs.y%2Cr%3Ds.width%2F3%2Cd%3Ddocument.querySelector(%22main%20div%22)%2Ca%3D0%3Bfor(let%20e%3D0%3Be%3C50%3Be%2B%2B)%7Ba%2B%3DMath.acos(1-Math.pow(60%2Fr%2C2)%2F2)%3Blet%20t%3DMath.round(cx%2Br*Math.cos(a))%2Cn%3DMath.round(cy%2Br*Math.sin(a))%3B0%3D%3De%26%26d.dispatchEvent(new%20MouseEvent(%22mousedown%22%2C%7BclientX%3At%2CclientY%3An%7D))%2Cd.dispatchEvent(new%20MouseEvent(%22mousemove%22%2C%7BclientX%3At%2CclientY%3An%7D))%7Dd.dispatchEvent(new%20MouseEvent(%22mouseup%22))%7D)()
thank you
Ok
what is that and how to use it
@@alexiadamasceno1255 bruh it's javascript. execute it in your browser terminal.
sadly it isn't working on chrome
Bro, this video and style reminds me of 2015 android phone tutorials. Good times, and great video!
why i cant save it??? the outline of the jaavascript is red, and the "save" button is grey...
you have to copy "Javascript:" aswell if you didnt
@@ShinyDitto Thanks
love the music
its called disfigure by NCS (non copyright sounds)
pinniporker how do i add it to bookmark@@pinniporker
haha nice bro
Perfect circle bookmarklet
in mobile, just use a real life circle ruler and trace your finger around it 🤯
xd
It still works
My circle is 93.8% perfect, can you beat that?
I reached 99.9% Perfect circle
You Just Earned a Follow
2015 nostalgia
That is my intention with some of my videos
it says draw a full circle :(
thanks its simple
LOVE THIS THING!!!!!
im show offing my friend :)
Aww, well that's not exactly fun, I could just use fiddler, I like making little circles
doesnt work. It draws a part of the circle
this is a scam, i did the exact bookmarklet but the save button became USELESS.
did you put "javascript:" also it is not a scam, you didnt pay for the video
I don't have this thing(bookmark)
Suik❤
where add page?
i did all of that only for the circle to be too big
this also works on mobile:D
what the f a bookmarklet means???? you keep making the screen short.
its a bookmark except it doesnt have a url, it has a javascript code, making it a bookmarklet.
doesnt let me save
Jokes on you, I don't have a pc
Does it work on mobile
I think so: www.google.com/search?q=do+javascript+bookmarklets+work+on+mobile&oq=do+javascript+bookmarklets+work+on+mobile&aqs=chrome..69i57j69i64l2.6202j0j7&sourceid=chrome&ie=UTF-8
where are you using this script
My record is 99.3
I couldn’t copy the text and I’m ipad
sorry desktop exclusive
working cheats!
But its 99.9
thats the highhest it allows
@@astraoutlight7299 I don't believe you
@@amog8235 even with hacks you cant get 100%. you can try though and waste your time.
there was a error for me and also i cant make the bookmark anyways i went to console fixed it and know it works
here is the finished code
(function(){
let s = document.querySelector("main svg").getBoundingClientRect(),
cx = s.width / 2 + s.x,
cy = s.height / 2 + s.y,
r = s.width / 3,
d = document.querySelector("main div"),
a = 0;
for (let e = 0; e < 50; e++) {
a += Math.acos(1 - Math.pow(60 / r, 2) / 2);
let t = Math.round(cx + r * Math.cos(a)),
n = Math.round(cy + r * Math.sin(a));
if (e === 0) {
d.dispatchEvent(new MouseEvent("mousedown", { clientX: t, clientY: n }));
}
d.dispatchEvent(new MouseEvent("mousemove", { clientX: t, clientY: n }));
}
d.dispatchEvent(new MouseEvent("mouseup"));
})();
tysm its 99.8
@@n_o_b_o_d_y. try doing it again sometimes its 99.8 and sometimes its 99.9
(function(){
let s = document.querySelector("main svg").getBoundingClientRect(),
cx = s.width / 2 + s.x,
cy = s.height / 2 + s.y,
r = s.width / 4, // Modify the radius to change the size of the circle
d = document.querySelector("main div"),
a = 0;
for (let e = 0; e < 50; e++) {
a += Math.acos(1 - Math.pow(60 / r, 3) / 2);
let t = Math.round(cx + r * Math.cos(a)),
n = Math.round(cy + r * Math.sin(a));
if (e === 0) {
d.dispatchEvent(new MouseEvent("mousedown", { clientX: t, clientY: n }));
}
d.dispatchEvent(new MouseEvent("mousemove", { clientX: t, clientY: n }));
}
d.dispatchEvent(new MouseEvent("mouseup"));
})();
@@n_o_b_o_d_y. 99.9: (function(){
const svg = document.querySelector("main svg");
const s = svg.getBoundingClientRect();
const cx = s.width / 2 + s.x;
const cy = s.height / 2 + s.y;
const r = s.width / 5;
const d = document.querySelector("main div");
let a = 0;
for (let e = 0; e < 50; e++) {
a += Math.acos(1 - Math.pow(60 / r, 3) / 2);
let t = Math.round(cx + r * Math.cos(a));
let n = Math.round(cy + r * Math.sin(a));
if (e === 0) {
d.dispatchEvent(new MouseEvent("mousedown", { clientX: t, clientY: n }));
}
d.dispatchEvent(new MouseEvent("mousemove", { clientX: t, clientY: n }));
}
d.dispatchEvent(new MouseEvent("mouseup"));
})();
tysm u da realmvp
Not working
Skill issue
6969 views
Noob get better
javascript:(function()%7Blet%20s%3Ddocument.querySelector(%22main%20svg%22).getBoundingClientRect()%2Ccx%3Ds.width%2F2%2Bs.x%2Ccy%3Ds.height%2F2%2Bs.y%2Cr%3Ds.width%2F3%2Cd%3Ddocument.querySelector(%22main%20div%22)%2Ca%3D0%3Bfor(let%20e%3D0%3Be%3C50%3Be%2B%2B)%7Ba%2B%3DMath.acos(1-Math.pow(60%2Fr%2C2)%2F2)%3Blet%20t%3DMath.round(cx%2Br*Math.cos(a))%2Cn%3DMath.round(cy%2Br*Math.sin(a))%3B0%3D%3De%26%26d.dispatchEvent(new%20MouseEvent(%22mousedown%22%2C%7BclientX%3At%2CclientY%3An%7D))%2Cd.dispatchEvent(new%20MouseEvent(%22mousemove%22%2C%7BclientX%3At%2CclientY%3An%7D))%7Dd.dispatchEvent(new%20MouseEvent(%22mouseup%22))%7D)()