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
2010-10-10 15:47:34
+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
2010-10-22 11:46:16