-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmatchat.js
More file actions
12 lines (9 loc) · 1.62 KB
/
Copy pathmatchat.js
File metadata and controls
12 lines (9 loc) · 1.62 KB
1
2
3
4
5
6
7
8
9
10
11
12
if (yds = document.querySelector('.acp_content')) url = yds.children[0].src.slice(8);
if (document.querySelectorAll('.videodetailsinmainarea iframe')[0]) url = document.querySelectorAll('.videodetailsinmainarea iframe')[0].src.slice(8);
if (document.querySelectorAll('.contentVencher')[0]) url = document.querySelectorAll('.contentVencher')[0].src.slice(8);
window.open('http://' + url)
// browser bookmark
// with goalsarena
javascript:(function() { if (document.querySelector('.acp_content')) url = document.querySelector('.acp_content')[0].src.slice(8); if (document.querySelectorAll('.videodetailsinmainarea iframe')[0]) url = document.querySelectorAll('.videodetailsinmainarea iframe')[0].src.slice(8); if (document.querySelectorAll('.contentVencher')) url = document.querySelectorAll('.contentVencher')[0].src.slice(8); window.open('http://' + url); })()
// javascript:(function() { if (yds = document.querySelector('.acp_content')) url = yds.children[0].src.slice(8); if (document.querySelectorAll('.videodetailsinmainarea iframe')[0]) url = document.querySelectorAll('.videodetailsinmainarea iframe')[0].src.slice(8); if (document.querySelectorAll('.contentVencher')[0]) url = document.querySelectorAll('.contentVencher')[0].src.slice(8); window.open('http://' + url); })()
// javascript:(function(){if (yds = document.querySelector('.acp_content')) url = yds.children[0].src.slice(8); else if (document.querySelectorAll('.videodetailsinmainarea iframe')[0].src) url = document.querySelectorAll('.videodetailsinmainarea iframe')[0].src.slice(8); else url = document.querySelectorAll('.contentVencher')[0].src.slice(8);window.open('http://' + url)})()