diff --git a/README.md b/README.md index c9f8eab..bfb31b5 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -![Logo](https://cdn.lbryplayer.xyz/api/v3/streams/free/Cover-Image/2abac7db775191738dcb7746e8a984403a779201/5d4c1d?download=true) +![Logo](src/icons/wol/default-transparent.svg) # Watch on LBRY A plugin for web browsers that brings more utility for LBRY Protocol by allowing you to find people you watch on YouTube that are availible on LBRY.tv/Odysee/Desktop App and other LBRY Protocol based apps/websites, allows you to easly check your subscribtion list and much more! diff --git a/src/icons/icon128.png b/src/icons/icon128.png deleted file mode 100644 index 4329f4a..0000000 Binary files a/src/icons/icon128.png and /dev/null differ diff --git a/src/icons/icon16.png b/src/icons/icon16.png deleted file mode 100644 index bd7235e..0000000 Binary files a/src/icons/icon16.png and /dev/null differ diff --git a/src/icons/icon48.png b/src/icons/icon48.png deleted file mode 100644 index 982710e..0000000 Binary files a/src/icons/icon48.png and /dev/null differ diff --git a/src/icons/lbry-logo.svg b/src/icons/lbry/lbry-logo.svg similarity index 100% rename from src/icons/lbry-logo.svg rename to src/icons/lbry/lbry-logo.svg diff --git a/src/icons/odysee-logo.svg b/src/icons/lbry/odysee-logo.svg similarity index 100% rename from src/icons/odysee-logo.svg rename to src/icons/lbry/odysee-logo.svg diff --git a/src/icons/wol/default-monochrome-black.svg b/src/icons/wol/default-monochrome-black.svg new file mode 100644 index 0000000..a1d616f --- /dev/null +++ b/src/icons/wol/default-monochrome-black.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/icons/wol/default-monochrome-white.svg b/src/icons/wol/default-monochrome-white.svg new file mode 100644 index 0000000..8419d64 --- /dev/null +++ b/src/icons/wol/default-monochrome-white.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/icons/wol/default-transparent.svg b/src/icons/wol/default-transparent.svg new file mode 100644 index 0000000..68d81df --- /dev/null +++ b/src/icons/wol/default-transparent.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/icons/wol/default.svg b/src/icons/wol/default.svg new file mode 100644 index 0000000..c8c31b5 --- /dev/null +++ b/src/icons/wol/default.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/icons/wol/icon128.png b/src/icons/wol/icon128.png new file mode 100644 index 0000000..525efe9 Binary files /dev/null and b/src/icons/wol/icon128.png differ diff --git a/src/icons/wol/icon16.png b/src/icons/wol/icon16.png new file mode 100644 index 0000000..48a46f6 Binary files /dev/null and b/src/icons/wol/icon16.png differ diff --git a/src/icons/wol/icon48.png b/src/icons/wol/icon48.png new file mode 100644 index 0000000..1abb364 Binary files /dev/null and b/src/icons/wol/icon48.png differ diff --git a/src/icons/wol/isolated-layout.svg b/src/icons/wol/isolated-layout.svg new file mode 100644 index 0000000..c261577 --- /dev/null +++ b/src/icons/wol/isolated-layout.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/icons/wol/isolated-monochrome-black.svg b/src/icons/wol/isolated-monochrome-black.svg new file mode 100644 index 0000000..2578209 --- /dev/null +++ b/src/icons/wol/isolated-monochrome-black.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/icons/wol/isolated-monochrome-white.svg b/src/icons/wol/isolated-monochrome-white.svg new file mode 100644 index 0000000..39bbcc1 --- /dev/null +++ b/src/icons/wol/isolated-monochrome-white.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/manifest.json b/src/manifest.json index bf1cb8b..d15a5a4 100644 --- a/src/manifest.json +++ b/src/manifest.json @@ -34,13 +34,13 @@ "web_accessible_resources": [ "popup.html", "tools/YTtoLBRY.html", - "icons/lbry-logo.svg", - "icons/odysee-logo.svg" + "icons/lbry/lbry-logo.svg", + "icons/lbry/odysee-logo.svg" ], "icons": { - "16": "icons/icon16.png", - "48": "icons/icon48.png", - "128": "icons/icon128.png" + "16": "icons/wol/icon16.png", + "48": "icons/wol/icon48.png", + "128": "icons/wol/icon128.png" }, "manifest_version": 2 } diff --git a/src/scripts/ytContent.tsx b/src/scripts/ytContent.tsx index 2c46a1f..2c59f69 100644 --- a/src/scripts/ytContent.tsx +++ b/src/scripts/ytContent.tsx @@ -26,10 +26,10 @@ interface ButtonSettings { } const buttonSettings: Record = { - app: { text: 'Watch on LBRY', icon: chrome.runtime.getURL('icons/lbry-logo.svg') }, - 'lbry.tv': { text: 'Watch on LBRY', icon: chrome.runtime.getURL('icons/lbry-logo.svg') }, + app: { text: 'Watch on LBRY', icon: chrome.runtime.getURL('icons/lbry/lbry-logo.svg') }, + 'lbry.tv': { text: 'Watch on LBRY', icon: chrome.runtime.getURL('icons/lbry/lbry-logo.svg') }, odysee: { - text: 'Watch on Odysee', icon: chrome.runtime.getURL('icons/odysee-logo.svg'), + text: 'Watch on Odysee', icon: chrome.runtime.getURL('icons/lbry/odysee-logo.svg'), style: { backgroundColor: '#1e013b' }, }, };