-
-
Notifications
You must be signed in to change notification settings - Fork 543
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
issue #1594 #1599
base: master
Are you sure you want to change the base?
issue #1594 #1599
Conversation
Now hideDetailButton() use the svg path to read the button. This is to support all language.
Rework playback speed to be more intuitive
Fix playlist autoplay ( code-charity#1412 / code-charity#1198 )
…tton Fixed hide detail button not working
hi @MohamedLebda, assigned you to #1594 quickly (about 4.0.17 from january), even if it is just for you to close it, just in case it adds any detail, since you researched autoplay. in future we can keep store and repo versions more synced.
interesting, seen this once, how'd youtube's code relate to us there?
|
d625ba5
to
5da5d51
Compare
5960401
to
9e3553e
Compare
imo screwing with CORS is a big security nono, if google wants ads to work on YT they can fix this themselves, not to mention this might be viewed as malicious by the Extension store review process and result in removing from the store. |
02b8cb0
to
97f6d19
Compare
4dd983d
to
df2cac1
Compare
618ab26
to
579628d
Compare
62a36d2
to
40aedd4
Compare
the browser's Same Origin Policy is blocking a cross-origin request to https://googleads.g.doubleclick.net/. This means that the browser is preventing the web page from accessing resources on a different domain than the one that served the web page.
The missing 'Access-Control-Allow-Origin' header is a CORS (Cross-Origin Resource Sharing) related issue. When a website makes a cross-origin request, the server needs to send this header along with the response to indicate which origins are allowed to access the resource. If this header is missing, the browser will block the request.
This issue could be causing problems with the functionality of the web page, depending on what resources are being requested from the remote domain.