From 382ff10cceadb6672a4258d58467e808e97af240 Mon Sep 17 00:00:00 2001 From: Adeel Hassan Date: Thu, 5 May 2022 21:02:18 +0500 Subject: [PATCH] bug fix --- manifest.json | 2 +- popup.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/manifest.json b/manifest.json index 48d9f0a..9842940 100644 --- a/manifest.json +++ b/manifest.json @@ -2,7 +2,7 @@ "manifest_version": 3, "name": "Find on Reddit", "description": "Find discussions of the current URL on Reddit", - "version": "1.5.6", + "version": "1.5.7", "action": { "default_icon": "icon-256.png", "default_popup": "popup.html" diff --git a/popup.js b/popup.js index f8d1461..e2106df 100644 --- a/popup.js +++ b/popup.js @@ -1,5 +1,5 @@ import {getOptions, getCurrentTabUrl} from './chrome.js'; -import {processUrl, isYoutubeUrl} from './url.js'; +import {processUrl, isYoutubeUrl, getYoutubeVideoId} from './url.js'; import {findOnReddit} from './reddit.js'; import {popupDefaults} from './query.js';