omidnikrah / anonymous-instagram-story-seen

Seen Instagram stories anonymously
24 stars 5 forks source link

Stopped working #4

Open encodeShoe opened 1 year ago

encodeShoe commented 1 year ago

Think Instagram updated their API, the tool stopped working today

3alola commented 1 year ago

yeah and what do you think the substitute

jesseger commented 1 year ago

It seems to work if you just add 'https://www.instagram.com/api/graphql*' to the blocked URLs. Not sure if this has any other side effects, though.

3alola commented 1 year ago

It seems to work if you just add 'https://www.instagram.com/api/graphql*' to the blocked URLs. Not sure if this has any other side effects, though.

let isActive = false; chrome.browserAction.setBadgeBackgroundColor({ color: isActive ? '#0097ff' : '#777' }); chrome.browserAction.setBadgeText({ text: isActive ? 'On' : 'Off' }); chrome.webRequest.onBeforeRequest.addListener( () => ({ cancel: isActive }), { urls: [ '://.instagram.com/api/v1/stories/reel/seen*' ] }, [ 'blocking' ] );

chrome.browserAction.onClicked.addListener(() => { isActive = !isActive; chrome.browserAction.setBadgeBackgroundColor({ color: isActive ? '#0097ff' : '#777' }); chrome.browserAction.setBadgeText({ text: isActive ? 'On' : 'Off' }); });

you mean change this

}), { urls: [ '://https://www.instagram.com/api/graphql*' ] }, [ 'blocking' ]

tolgagirgin commented 1 year ago

It gives this error:

Manifest version 2 is deprecated, and support will be removed in 2023. See https://developer.chrome.com/blog/mv2-transition/ for more details.

omidnikrah commented 1 year ago

Can you test it now? I have added the new API to the blacklist.

tolgagirgin commented 1 year ago

Can you test it now? I have added the new API to the blacklist.

Same. I think it is not about api. you should check link; https://developer.chrome.com/blog/mv2-transition/

Username23453 commented 11 months ago

Does it work now?

Alessandro891 commented 3 months ago

Unfortunately it doesn't work for me either. if I watch the story both on and off you can see that I watched it.

Username23453 commented 2 months ago

Still doesnt work, as of 4-27-24