mirror of
https://github.com/mozilla/pdf.js.git
synced 2025-04-26 10:08:06 +02:00
Include uppercase extensions for Chrome
add uppercase case extension recognition for Chrome pdf.js
This commit is contained in:
parent
66b9cc8a47
commit
05bca47b11
2 changed files with 8 additions and 2 deletions
|
@ -32,7 +32,10 @@ chrome.webRequest.onBeforeRequest.addListener(
|
|||
urls: [
|
||||
'http://*/*.pdf',
|
||||
'https://*/*.pdf',
|
||||
'file://*/*.pdf'
|
||||
'file://*/*.pdf',
|
||||
'http://*/*.PDF',
|
||||
'https://*/*.PDF',
|
||||
'file://*/*.PDF'
|
||||
],
|
||||
types: ['main_frame']
|
||||
},
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue