Fixed user scrolling in all note list

This commit is contained in:
2022-09-28 21:02:05 +03:00
parent 0f3b3d527d
commit 26bcc0cbfb
6 changed files with 8 additions and 15 deletions

View File

@@ -28,7 +28,7 @@
},
"manifest_version": 3,
"name": "Twitch Notes",
"version": "0.1.0",
"version": "0.2.1",
"web_accessible_resources": [
{
"resources": [

View File

@@ -13,14 +13,4 @@
script.id = "twitchNotesScript";
head.appendChild(script);
}
// if (!document.querySelector("style#twitchNotesStyle")) {
// const style = document.createElement("link");
// style.setAttribute("href", chrome.runtime.getURL("twitch-notes.css"));
// style.setAttribute("type", "text/css");
// style.setAttribute("rel", "stylesheet");
// style.setAttribute("crossorigin", "anonymous");
// style.id = "twitchNotesStyle";
// head.appendChild(style);
// }
})();

File diff suppressed because one or more lines are too long