Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Blocking Chrome Extensions from running on my site

As a web developer, is there any way to prevent a user's Chrome extensions from being applied to my site? i.e. a header, meta tag, anything? Additionally, if there is, is there also a way to whitelist particular extensions?

like image 672
Max Avatar asked Apr 22 '12 03:04

Max


People also ask

How do I disable extensions on certain websites Chrome?

Google Chrome:At the top right, click More. > More tools > Extensions. On to the extension you want to remove, click Remove. Confirm by clicking Remove.

How do I restrict access to extensions?

Click the Details button under the extension that you want to restrict. On the extension's details' page, scroll down to the Permissions section and you will see a dropdown called “Allow this extension to read and change all your data on websites you visit”. Open it and select the 'On specific sites' option.


1 Answers

It's not possible. At the web server end, you are only only able to control what the browser will allow you to control. In simple terms, this means you can control the data (HTML, javascript, headers etc) that you send back to it. That's about it.

like image 54
Michael Slade Avatar answered Sep 30 '22 00:09

Michael Slade