This question already has answers here:
Can websites tell what addons/extensions are installed in a web browser?
(3 answers)
Check if user has a third party Chrome extension installed
(1 answer)
How to detect extension on a browser?
(2 answers)
Closed 5 years ago.
How can a detect a specific extension(like extension X) installed in google chrome. I search for it but most of the answer is detecting self extensions. That is first create an extension and then detect this extension by it's any element. But I need to detect an extension which is not created by me and installed from chrome web store.
Visit this link and you can use most the the connection methods here: https://developer.chrome.com/extensions/extension#global-events
The chrome.extension API has utilities that can be used by any extension page. It includes support for exchanging messages between an extension and its content scripts or between extensions, as described in detail in Message Passing.
Related
This question already has answers here:
Chrome extension to read HTTP response
(2 answers)
Access variables and functions defined in page context using a content script
(6 answers)
Closed 12 months ago.
I've checked this and this and none of them helped me, that's why I opened this question
I'm trying to save all of the XHR Responses with a chrome extension for a certain website.
There's a way to do this but it uses the Debugger, which I don't want to use.
I tried modifying window.XMLHttpRequest.prototype.send to log the responses but it seems like you can't modify the window object using a chrome extension.
This question already has answers here:
Can a website detect when you are using Selenium with chromedriver?
(25 answers)
Chrome browser initiated through ChromeDriver gets detected
(2 answers)
Closed 4 years ago.
I am trying to crawl a couple of website pages to use their information and I can only use things like selenium that has chromium to do that
Now I am trying to hide it from the website owners because I don't want to get banned. some people are talking about changing some variable names called cdc_ inside of chromdriver and I can't understand how to do it
Also I am using python for this
EDIT : My problem is that I can't change the variable of cdc_ or any other variables in chrome driver because I don't know how
any method so I can hide the fact that I am using selenium!
Please help me here
Thank you for your time
This question already has answers here:
Can I modify chrome://extensions/ page with JavaScript(user script)?
(3 answers)
Could I make a Google Chrome extension for chrome pages (downloads, extensions etc)?
(3 answers)
Does content_scripts matches "chrome-extension://*/*" work?
(4 answers)
Closed 5 years ago.
So this seems like it should be really simple, but I can't find it anywhere on Google. I have a certain Google Chrome extension that I've downloaded from the Chrome Extension store, and I'm trying to slightly tweak the way it displays some stuff on its chrome-extension:// page. TamperMonkey normally works great for this on a http:// page, but I can't seem to get my script to even activate for a chrome-extension:// page. Does anyone know how to accomplish this?
This question already has answers here:
How do I check connection type (WiFi/LAN/WWAN) using HTML5/JavaScript?
(4 answers)
Closed 9 years ago.
I know the online status could be checked using the javascript API navigator.onLine.
However, for smartphone html5 apps it would be also interesting HOW the online has been set.
Either by WLAN or using 3G/4G connection.
Is there a way to detect the kind of online connection?
You could use window.navigator.connection but the support for this API is very limited at the moment. Check out: https://developer.mozilla.org/en-US/docs/Web/API/window.navigator.connection
This question already has answers here:
Closed 10 years ago.
Possible Duplicate:
Firefox extension debugging
Some topics note that Chromebug can be used to debug Add-on SDK extensions. I just installed it but cannot get it to work. I am starting Firefox 12.0 with -chromebug command line parameter and want to be able to inspect a panel's JavaScript code but Chromebug's file and context selectors are empty. What else I can use?