Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //--------------------HOTSTAR---------------------------
- let a= 'https://www.hotstar.com/in/tv/nazar/18293/',
- b= /\d{6,}/,
- c= document.querySelectorAll('a[href*=all-wish]'),
- d= document.querySelector('#togglehs'),
- x= true,
- bm= [...c].join('\n'),
- cm= bm.split('\n');
- function kd(){
- for(let i=0; i<c.length; i++){
- if(x==true){
- c[i].href=a+c[i].href.match(b);
- x=false;
- }
- else if(x==false){
- c[i].href=cm[i];
- x=true;
- }
- }}
- d.onclick=kd;
- //-------------
- let a= document.getElementsByTagName('a'),
- b= /.+wish.+\D+/gi,
- c= 'https://www.hotstar.com/in/tv/nazar/18293/';
- for (let i=0; i<a.length; i++) {
- a[i].href = a[i].href.replace('&type=hotstar','');
- a[i].href = a[i].href.replace(b,c);
- }
- //--------------
- let a= document.getElementsByTagName('a'),
- c= 'https://www.hotstar.com/in/tv/nazar/18293/';
- for (let i=0; i<a.length; i++) {
- e=a[i].href.includes('all-wish'),
- f=!a[i].href.includes('javascript');
- if (e&&f){
- d= a[i].href.match(/\d{7,}/gi),
- a[i].href = c+d;
- }
- }
- //----------------Force--Rename-New--Window------------------------
- let a= document.querySelectorAll('a');
- for(let i=0; i<a.length; i++){
- a[i].onclick= function(){
- let b= window.open('','_blank');
- b.document.title= a[i].textContent;
- b.document.body.innerHTML=`<iframe src='${a[i].href'></iframe>`;
- return false;
- };
- }
Add Comment
Please, Sign In to add comment