views:

44

answers:

2

If I disable javascript on a site using Chrome's javascript settings, does this prevent extensions from running content scripts on it?

+1  A: 

No. Content scripts are just javascript. Any Javascript will be disabled by these settings.

tandu
+1  A: 

Both content script and chrome.tabs.executeScript will run even if javascript is disabled.

But if your content script injects javascript in DOM, that injected javascript will not work.

x64igor