Skip to content

Commit

Permalink
refactor: normalize image file names
Browse files Browse the repository at this point in the history
  • Loading branch information
FutureDuck committed Jun 16, 2020
1 parent 6af57ef commit 4560b17
Show file tree
Hide file tree
Showing 10 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@
"sourceDir": "src",
"artifactsDir": "dist",
"ignoreFiles": [
"images/duck-with-shades.png"
"images/duck_with_shades.png"
]
}
}
2 changes: 1 addition & 1 deletion src/browser_action/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<body>
<header id="feedback-header">
<img
src="../images/duck-with-shades_130.png"
src="../images/duck_with_shades_130.png"
alt="DDG Best Tracker Blocker extension logo"
/>
<h1>DDG Best Tracker Blocker</h1>
Expand Down
2 changes: 1 addition & 1 deletion src/browser_action/style.css
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
body {
padding: 2rem;
max-width: 25rem;
background: repeat url(../images/duck-pattern.jpg);
background: repeat url(../images/duck_pattern.jpg);
font-family: Arial, Helvetica, sans-serif;
}

Expand Down
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
12 changes: 6 additions & 6 deletions src/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,19 @@
"description": "Tracker Blocker extension, part of DDG's interview process",
"version": "1.5.1",
"icons": {
"16": "images/duck-with-shades_16.png",
"32": "images/duck-with-shades_32.png",
"64": "images/duck-with-shades_64.png"
"16": "images/duck_with_shades_16.png",
"32": "images/duck_with_shades_32.png",
"64": "images/duck_with_shades_64.png"
},
"permissions": ["webRequest", "webRequestBlocking", "<all_urls>"],
"background": {
"page": "background/index.html"
},
"browser_action": {
"default_icon": {
"16": "images/duck-with-shades_16.png",
"32": "images/duck-with-shades_32.png",
"64": "images/duck-with-shades_64.png"
"16": "images/duck_with_shades_16.png",
"32": "images/duck_with_shades_32.png",
"64": "images/duck_with_shades_64.png"
},
"default_popup": "browser_action/index.html",
"default_title": "DDG Best Tracker Ext"
Expand Down

0 comments on commit 4560b17

Please sign in to comment.