Page overlays on chrome extensions
I want to create a Chrome extension that collects data on a search engine I am building, and it requires a pop-up to gather the user's feedback on the destination. The issue is that no matter what I try, most sites like YouTube will block code injection making the extension useless. Is there a more reliable way to create a pop-up, like this? I am fine with any solution because this is solely an internal tool.
1 Reply
How is your popup displayed - is it in DOM of youtube?
if the feedback is binary like 'helpful' and 'not helpful' you can use alert().
or if its a rating 1-5, have this options - 1. rating = 1 and 2. rating >1. If user chooses second option display another alert() with rating = 2 and rating >2.
this is annoying ik, but since this is an internal tool this might work.