diff options
Diffstat (limited to 'ext')
| -rw-r--r-- | ext/icon.png | bin | 182 -> 0 bytes | |||
| -rw-r--r-- | ext/img/icon128.png | bin | 0 -> 274 bytes | |||
| -rw-r--r-- | ext/img/icon16.png | bin | 0 -> 107 bytes | |||
| -rw-r--r-- | ext/img/icon19.png | bin | 0 -> 111 bytes | |||
| -rw-r--r-- | ext/img/icon38.png | bin | 0 -> 137 bytes | |||
| -rw-r--r-- | ext/img/icon48.png | bin | 0 -> 147 bytes | |||
| -rw-r--r-- | ext/manifest.json | 20 | 
7 files changed, 16 insertions, 4 deletions
| diff --git a/ext/icon.png b/ext/icon.pngBinary files differ deleted file mode 100644 index 2ec925d0..00000000 --- a/ext/icon.png +++ /dev/null diff --git a/ext/img/icon128.png b/ext/img/icon128.pngBinary files differ new file mode 100644 index 00000000..d22e3c88 --- /dev/null +++ b/ext/img/icon128.png diff --git a/ext/img/icon16.png b/ext/img/icon16.pngBinary files differ new file mode 100644 index 00000000..4670bda0 --- /dev/null +++ b/ext/img/icon16.png diff --git a/ext/img/icon19.png b/ext/img/icon19.pngBinary files differ new file mode 100644 index 00000000..f7d4c7a4 --- /dev/null +++ b/ext/img/icon19.png diff --git a/ext/img/icon38.png b/ext/img/icon38.pngBinary files differ new file mode 100644 index 00000000..da7a9990 --- /dev/null +++ b/ext/img/icon38.png diff --git a/ext/img/icon48.png b/ext/img/icon48.pngBinary files differ new file mode 100644 index 00000000..403bb60e --- /dev/null +++ b/ext/img/icon48.png diff --git a/ext/manifest.json b/ext/manifest.json index cbe1e04a..11d00e5d 100644 --- a/ext/manifest.json +++ b/ext/manifest.json @@ -4,10 +4,22 @@      "description":      "Yomichan Extension",      "version":          "0.0.1", -    "browser_action": {"default_icon": "icon.png"}, -    "background":     {"page": "bg/background.html"}, -    "options_page":   "bg/options.html", -    "permissions":    ["storage"], +    "icons": { +        "16":  "img/icon16.png", +        "48":  "img/icon48.png", +        "128": "img/icon128.png" +    }, + +    "browser_action": { +        "default_icon": { +            "19": "img/icon19.png", +            "38": "img/icon38.png" +        } +    }, + +    "background":   {"page": "bg/background.html"}, +    "options_page": "bg/options.html", +    "permissions":  ["storage"],      "content_scripts": [{          "matches": ["*://*/*"], |