-
Notifications
You must be signed in to change notification settings - Fork 905
How to whitelist a specific extension
Nathan R edited this page May 14, 2019
·
1 revision
How to whitelist a specific extension? (Such as https://example.com/book.pdf)
- Open the extension settings page
- Go to the whitelist settings, and create a new line
- Copy this code
/([a-zA-Z0-9\s_\\.\-\(\):])+(.pdf)$/
and change.pdf
to the extension you want to whitelist. If you want multiple extensions, add a vertical bar (|) and add the extension after it. Example:/([a-zA-Z0-9\s_\\.\-\(\):])+(.doc|.docx|.pdf)$/
- Paste it into the whitelisting box and any websites that have the extension you chose will be whitelisted.