aboutsummaryrefslogtreecommitdiffhomepage
path: root/webpack/webpack.common.js
diff options
context:
space:
mode:
authorAjay Ramachandran <[email protected]>2021-03-24 20:13:33 -0400
committerAjay Ramachandran <[email protected]>2021-03-24 20:13:33 -0400
commit3ff5fdb3a10d09de34d979f696133c17b5b58c31 (patch)
treeea5028d2d5565d0d1c0dfdfead56f3210d9dcf06 /webpack/webpack.common.js
parentcc935624e9a1e2fb5312c891399f12f499b3fe9b (diff)
downloadSponsorBlock-3ff5fdb3a10d09de34d979f696133c17b5b58c31.tar.gz
SponsorBlock-3ff5fdb3a10d09de34d979f696133c17b5b58c31.zip
Prompt to accept youtube.com permission if video info fails to load
Should fix #698, #687, #611 and #635
Diffstat (limited to 'webpack/webpack.common.js')
-rw-r--r--webpack/webpack.common.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/webpack/webpack.common.js b/webpack/webpack.common.js
index 79fea60b..1d130af0 100644
--- a/webpack/webpack.common.js
+++ b/webpack/webpack.common.js
@@ -9,7 +9,8 @@ module.exports = env => ({
popup: path.join(__dirname, srcDir + 'popup.ts'),
background: path.join(__dirname, srcDir + 'background.ts'),
content: path.join(__dirname, srcDir + 'content.ts'),
- options: path.join(__dirname, srcDir + 'options.ts')
+ options: path.join(__dirname, srcDir + 'options.ts'),
+ permissions: path.join(__dirname, srcDir + 'permissions.ts')
},
output: {
path: path.join(__dirname, '../dist/js'),