Open encodeShoe opened 1 year ago
yeah and what do you think the substitute
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.
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' ]
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.
Can you test it now? I have added the new API to the blacklist.
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/
Does it work now?
Unfortunately it doesn't work for me either. if I watch the story both on and off you can see that I watched it.
Still doesnt work, as of 4-27-24
Think Instagram updated their API, the tool stopped working today