Skip to content

Commit

Permalink
#45 - Promisify the Chrome extensions API
Browse files Browse the repository at this point in the history
  • Loading branch information
Manvel committed Oct 11, 2019
1 parent 029916a commit f2b26de
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/popup.html
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
<title>Privacy Manager</title>
<link rel="stylesheet" type="text/css" media="screen" href="css/main.css" />

<script type="text/javascript" src="js/browser-polyfill.min.js"></script>
<script type="text/javascript" src="js/common.js"></script>
<script type="text/javascript" src="js/ui.js"></script>
</head>
Expand Down
4 changes: 3 additions & 1 deletion webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,9 @@ module.exports =
new CopyPlugin([
{ from: './src/_locales', to: "_locales" },
{ from: './src/css', to: "css" },
{ flatten: true, from: './src/*'}
{ flatten: true, from: './src/*'},
{from: "node_modules/webextension-polyfill/dist/browser-polyfill.min.js",
to: "js"}
])
]
};
Expand Down

0 comments on commit f2b26de

Please sign in to comment.