All Questions
Tagged with privacy javascript
68 questions
0
votes
0
answers
26
views
Is there any way to disable visited links privacy settings in my firefox [duplicate]
I'm worinkg on my own userscript in tampermonkey for third party website and need to parse all my unvisited links. Is there any way to make visisted links accesible via JS for whole firefox or certain ...
0
votes
1
answer
104
views
can i stop a iframe, before it is loading?
I have some websites with different google maps embeds.(iframe) I read a lot of about data protection and privacy policy in the last few month. There are a lot of risk in relation with google maps.
...
5
votes
1
answer
2k
views
Does the Web Speech API in Chrome (and Edge) use an offsite server for STT?
Recently I found the Web Speech API as well as a simple HTML/JS speech-to-text example from Google.
I started playing with the API and made changes to the JS and HTML in the example above to see how ...
1
vote
1
answer
3k
views
How to test OneTrust cookie banners in localhost?
I'm using OneTrust cookie banners in an Angular application. I'm not the one creating the cookie banner, but it seems the way it works is our OneTrust engineer makes a OneTrust banner available for ...
3
votes
1
answer
793
views
Using localstorage to bypass 3rd party cookie rules
In light of 3rd party cookies being disallowed for tracking / marketing purposes, what would prevent a 3rd party from simply creating a local storage entry under child.com within an iframe (main page ...
0
votes
1
answer
215
views
Does NW.js send "crash reports" to Google (or anyone external) by default?
https://nwjs.readthedocs.io/en/latest/References/Manifest%20Format/
crash_report_url
Once the app crashed, the crash dump file and information about the runtime environment will be sent to the crash ...
-1
votes
1
answer
84
views
privat div box inside wordpress post - only visible to the post author?
How can I make a div box with "id=private" that is inside a post only visible to the author of the post?
I made it for the admin, but I want the id to be visible only to the author of the ...
4
votes
1
answer
3k
views
Safari 14.1 localStorage between tabs is not syncing
Here is a minimal case that works in Safari 14.0 (and Chrome, Firefox) but not Safari 14.1:
https://ffvix.csb.app
Open the demo in 2 tabs
Input some text and press "Submit"
Switch to other ...
-1
votes
1
answer
39
views
Does This Webhost's Odd Javascript-Explanation Make Sense?
If there are Google-Fonts scripts running on some pages of a website (but not all of them), and a developer in customer service tells me that I am wrong, the website does NOT run any Google Fonts at ...
1
vote
2
answers
2k
views
How to block/break/disable a request from a third-party tool?
I am not a professional and it is my first small project to create a website.
I use different tools/widgets from third party providers. For example a booking system. My problem is that the third party ...
0
votes
0
answers
175
views
Detect Javascript injection in network traffic
This is my first question here in stackoverflow, so pardon me if I am missing something!
I'm working on a project related to VPN security. They main goal of the project is to detect if a VPN client is ...
1
vote
0
answers
241
views
Facebook live API - Set live video to public
So I'm using the javascript SDK. I created the video using:
FB.api(
'/{user-id}/live_videos',
'POST',
{"status":"LIVE_NOW","title":"\"Today's Live Video\"","description":"\"This is the live ...
0
votes
1
answer
322
views
How to send data to another page without using cookies or JS in PHP?
So, I have a PHP file that runs an SQL(MySql) query and gets the result. I need that page to send that result to another page automatically(I can use PHP in the receiving page). However, I want to ...
6
votes
2
answers
741
views
Is it possible to tell the browser not to focus (bring to front) the selected window from `getDisplayMedia`?
I am working on an application using getDisplayMedia. When the browser prompts me to share my screen/a window and I select a specific window to share, that window is now suddenly focused and in front ...
2
votes
0
answers
334
views
How to detect if a user is using 3rd party tracking cookie blocking in Firefox?
With the latest versions of Firefox the Advanced Privacy Protection is enabled per default.
Is there a way to check if a user has this enabled? I tried doing a regular 3rd party cookie check. But ...