Я попытался создать расширение, которое изменит таблицу стилей страницы. я меняю стиль, например цвет фона, но не могу изменить всю таблицу стилей
manifest.json file
{
"name": "change stylesheet",
"version": "1.0",
"permissions": [
"tabs", "http://*/*", "https://*/*"
],
"browser_action": {
"default_title": "Set this page's style",
"default_icon": "icon.png",
"popup": "popup.html"
}
}
часть, где вызов java-скрипта в popup.htm
function click() {
chrome.tabs.executeScript(null,
{code:"document.getElementById('stylesheet').href = 'style1.css'"});
window.close();
}