diff --git a/README.md b/README.md index f0d2e4a..19ea7f9 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,8 @@ Screenshots License ------- + Apache License V2 Based on [daviddengcn/patch-ext](https://github.com/daviddengcn/patch-ext) - +Git Logo by [Jason Long](https://twitter.com/jasonlong) is licensed under the [Creative Commons Attribution 3.0 Unported License](https://creativecommons.org/licenses/by/3.0/). diff --git a/icons/patch-ext-128-light.png b/icons/patch-ext-128-light.png new file mode 100644 index 0000000..61fcd38 Binary files /dev/null and b/icons/patch-ext-128-light.png differ diff --git a/icons/patch-ext-128.png b/icons/patch-ext-128.png new file mode 100644 index 0000000..8bba6a3 Binary files /dev/null and b/icons/patch-ext-128.png differ diff --git a/icons/patch-ext-48-light.png b/icons/patch-ext-48-light.png new file mode 100644 index 0000000..27c9331 Binary files /dev/null and b/icons/patch-ext-48-light.png differ diff --git a/icons/patch-ext-48.png b/icons/patch-ext-48.png new file mode 100644 index 0000000..245f14a Binary files /dev/null and b/icons/patch-ext-48.png differ diff --git a/manifest.json b/manifest.json index c044b76..df51182 100644 --- a/manifest.json +++ b/manifest.json @@ -1,24 +1,36 @@ { - "name": "Git Patch Viewer", - "short_name": "GPV", - "description": "Git Patch Viewer", - "permissions": [ - "", - "tabs" - ], - "icons": { - "48":"patch-ext-48x48.png", - "128":"patch-ext-128x128.png" + "name": "Git Patch Viewer", + "short_name": "GPV", + "description": "Git Patch Viewer", + "permissions": ["", "tabs"], + "icons": { + "48": "icons/patch-ext-48.png", + "128": "icons/patch-ext-128.png" + }, + "background": { + "scripts": ["background.js"] + }, + "options_ui": { + "page": "options.html" + }, + "browser_action": { + "default-icons": { + "48": "icons/patch-ext-48.png", + "128": "icons/patch-ext-128.png" }, - "background": { - "scripts": ["background.js"] - }, - "options_ui": { - "page": "options.html" - }, - "browser_action": { - "default_icon": "patch-ext-48x48.png" - }, - "version": "2.0", - "manifest_version": 2 + "theme_icons": [ + { + "dark": "icons/patch-ext-48.png", + "light": "icons/patch-ext-48-light.png", + "size": 48 + }, + { + "dark": "icons/patch-ext-128.png", + "light": "icons/patch-ext-128-light.png", + "size": 128 + } + ] + }, + "version": "2.0.1", + "manifest_version": 2 } diff --git a/patch-ext-128x128.png b/patch-ext-128x128.png deleted file mode 100644 index 4e84600..0000000 Binary files a/patch-ext-128x128.png and /dev/null differ diff --git a/patch-ext-48x48.png b/patch-ext-48x48.png deleted file mode 100644 index 2b8265b..0000000 Binary files a/patch-ext-48x48.png and /dev/null differ