Skip to content

Commit

Permalink
Fix #3: Match local files too
Browse files Browse the repository at this point in the history
  • Loading branch information
mdamien committed Feb 22, 2016
1 parent 4e6a213 commit c91e3cd
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions extension/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,12 @@
"icons": { "64": "icons/64.png"},
"content_scripts": [
{
"matches": ["*://*/*.jpg","*://*/*.jpeg","*://*/*.png","*://*/*.webp","*://*/*.gif",
"*://*/*.JPG","*://*/*.JPEG","*://*/*.PNG","*://*/*.WEBP","*://*/*.GIF"],
"matches": [
"file://*.jpg","file://*.jpeg","file://*.png","file://*.webp","file://*.gif",
"file://*.JPG","file://*.JPEG","file://*.PNG","file://*.WEBP","file://*.GIF",
"*://*/*.jpg","*://*/*.jpeg","*://*/*.png","*://*/*.webp","*://*/*.gif",
"*://*/*.JPG","*://*/*.JPEG","*://*/*.PNG","*://*/*.WEBP","*://*/*.GIF"
],
"css": ["main.css"],
"js" : ["main.js"],
"run_at": "document_end"
Expand Down

0 comments on commit c91e3cd

Please sign in to comment.