diff options
author | Radu <radu@pml4t.net> | 2023-08-26 22:16:49 -0400 |
---|---|---|
committer | Radu <radu@pml4t.net> | 2023-08-27 16:45:40 -0400 |
commit | d98ab397c9b17036569b7a6e277b2790b02d1093 (patch) | |
tree | 708737cb50ac9354ccc4a069d95078774bb1c181 /popup.js | |
parent | 76debe0071fef6865bd0fb79199f53932bf063c0 (diff) |
Allow restricting websites on which extension runs
Diffstat (limited to 'popup.js')
-rw-r--r-- | popup.js | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/popup.js b/popup.js new file mode 100644 index 0000000..c07a031 --- /dev/null +++ b/popup.js @@ -0,0 +1,6 @@ +// SPDX-License-Identifier: GPL-2.0-only + +"use strict"; + +browser.runtime.openOptionsPage(); +window.close(); |