Skip to content

Commit 6cd1b8e

Browse files
committed
bugfix - use correct img element id when to hide it
1 parent b78f712 commit 6cd1b8e

5 files changed

Lines changed: 5 additions & 4 deletions

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
/dist
22
/node_modules
33
.idea/
4+
.DS_Store

chrome/src/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "New Tab Page Bookmarks",
33
"description": "Displays your bookmarks in multiple columns for quick access from the new tab page",
4-
"version": "1.6",
4+
"version": "1.7",
55
"manifest_version": 3,
66
"author": "https://github.com/mathio",
77
"chrome_url_overrides": {

firefox/src/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "New Tab Page Bookmarks",
33
"description": "Displays your bookmarks in multiple columns for quick access from the new tab page",
4-
"version": "1.6",
4+
"version": "1.7",
55
"manifest_version": 2,
66
"author": "https://github.com/mathio",
77
"chrome_url_overrides": {

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "chrome-new-tab-page-bookmarks",
3-
"version": "1.6.0",
3+
"version": "1.7.0",
44
"main": "index.js",
55
"license": "MIT",
66
"author": "",

src/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ const initImage = async () => {
111111
}
112112

113113
const hideImage = () => {
114-
document.querySelector('#image')?.remove()
114+
document.querySelector('#bg-image')?.remove()
115115
document.querySelector('#image-attribution')?.remove()
116116
document.querySelector('#canvas')?.remove()
117117
}

0 commit comments

Comments
 (0)