diff --git a/beastify/button/LICENSE b/beastify/button/LICENSE deleted file mode 100644 index c3727aa..0000000 --- a/beastify/button/LICENSE +++ /dev/null @@ -1 +0,0 @@ -The icon "beasts.png" is taken from the IconBeast Lite iconset, and used under the terms of its license (http://www.iconbeast.com/faq/), with a link back to the website: http://www.iconbeast.com/free/. diff --git a/beastify/icons/LICENSE b/beastify/icons/LICENSE new file mode 100644 index 0000000..003a5c9 --- /dev/null +++ b/beastify/icons/LICENSE @@ -0,0 +1,4 @@ + +The icon "beasts-32.png" is taken from the IconBeast Lite iconset, and used under the terms of its license (http://www.iconbeast.com/faq/), with a link back to the website: http://www.iconbeast.com/free/. + +The icon "beasts-64.png" is taken from Aha-Soft’s Free Retina iconset, and used under the terms of its license (http://www.aha-soft.com/free-icons/free-retina-icon-set/), with a link back to the website: http://www.aha-soft.com/. diff --git a/beastify/button/beasts.png b/beastify/icons/beasts-32.png similarity index 100% rename from beastify/button/beasts.png rename to beastify/icons/beasts-32.png diff --git a/beastify/icons/beasts-64.png b/beastify/icons/beasts-64.png new file mode 100644 index 0000000..c3f0924 Binary files /dev/null and b/beastify/icons/beasts-64.png differ diff --git a/beastify/manifest.json b/beastify/manifest.json index 6a3cb67..4ac23c2 100644 --- a/beastify/manifest.json +++ b/beastify/manifest.json @@ -5,6 +5,10 @@ "name": "Beastify", "version": "1.0", "homepage_url": "https://github.com/mdn/webextensions-examples/tree/master/beastify", + "icons": { + "32": "icons/beasts-32.png", + "64": "icons/beasts-64.png" + }, "applications": { "gecko": { @@ -17,7 +21,7 @@ ], "browser_action": { - "default_icon": "button/beasts.png", + "default_icon": "icons/beasts-32.png", "default_title": "Beastify", "default_popup": "popup/choose_beast.html" }, diff --git a/borderify/icons/LICENSE b/borderify/icons/LICENSE new file mode 100644 index 0000000..01672ae --- /dev/null +++ b/borderify/icons/LICENSE @@ -0,0 +1 @@ +The icons “border-32.png” and “border-64.png” are taken from the Google Material Design iconset, and used under the terms of the Creative Commons Attribution-ShareAlike license: http://creativecommons.org/licenses/by-sa/3.0/. diff --git a/borderify/icons/border-32.png b/borderify/icons/border-32.png new file mode 100644 index 0000000..52862ac Binary files /dev/null and b/borderify/icons/border-32.png differ diff --git a/borderify/icons/border-64.png b/borderify/icons/border-64.png new file mode 100644 index 0000000..a35a3e6 Binary files /dev/null and b/borderify/icons/border-64.png differ diff --git a/borderify/manifest.json b/borderify/manifest.json index cda95b4..c81e019 100644 --- a/borderify/manifest.json +++ b/borderify/manifest.json @@ -5,6 +5,10 @@ "name": "Borderify", "version": "1.0", "homepage_url": "https://github.com/mdn/webextensions-examples/tree/master/borderify", + "icons": { + "32": "icons/border-32.png", + "64": "icons/border-64.png" + }, "applications": { "gecko": { diff --git a/notify-link-clicks-i18n/LICENSE b/notify-link-clicks-i18n/LICENSE deleted file mode 100644 index 599b1c6..0000000 --- a/notify-link-clicks-i18n/LICENSE +++ /dev/null @@ -1 +0,0 @@ -The "link.png" icon is taken from the Geomicons iconset, and is used here under the MIT license: http://opensource.org/licenses/MIT. diff --git a/notify-link-clicks-i18n/background-script.js b/notify-link-clicks-i18n/background-script.js index 24d5ccb..6bd5baa 100644 --- a/notify-link-clicks-i18n/background-script.js +++ b/notify-link-clicks-i18n/background-script.js @@ -6,7 +6,7 @@ function notify(message) { var content = chrome.i18n.getMessage("notificationContent", message.url); chrome.notifications.create({ "type": "basic", - "iconUrl": chrome.extension.getURL("link.png"), + "iconUrl": chrome.extension.getURL("icons/link-48.png"), "title": title, "message": content }); diff --git a/notify-link-clicks-i18n/icons/LICENSE b/notify-link-clicks-i18n/icons/LICENSE new file mode 100644 index 0000000..52160ae --- /dev/null +++ b/notify-link-clicks-i18n/icons/LICENSE @@ -0,0 +1 @@ +The "link-48" and "link-64" icons are taken from the Geomicons iconset, and are used here under the MIT license: http://opensource.org/licenses/MIT. diff --git a/notify-link-clicks-i18n/link.png b/notify-link-clicks-i18n/icons/link-48.png similarity index 100% rename from notify-link-clicks-i18n/link.png rename to notify-link-clicks-i18n/icons/link-48.png diff --git a/notify-link-clicks-i18n/icons/link-64.png b/notify-link-clicks-i18n/icons/link-64.png new file mode 100644 index 0000000..3aa9b5a Binary files /dev/null and b/notify-link-clicks-i18n/icons/link-64.png differ diff --git a/notify-link-clicks-i18n/manifest.json b/notify-link-clicks-i18n/manifest.json index 038cb3b..361b9bb 100644 --- a/notify-link-clicks-i18n/manifest.json +++ b/notify-link-clicks-i18n/manifest.json @@ -5,6 +5,10 @@ "description": "__MSG_extensionDescription__", "version": "1.0", "homepage_url": "https://github.com/mdn/webextensions-examples/tree/master/notify-link-clicks-i18n", + "icons": { + "48": "icons/link-48.png", + "64": "icons/link-64.png" + }, "applications": { "gecko": { diff --git a/notify-link-clicks/LICENSE b/notify-link-clicks/LICENSE deleted file mode 100644 index 599b1c6..0000000 --- a/notify-link-clicks/LICENSE +++ /dev/null @@ -1 +0,0 @@ -The "link.png" icon is taken from the Geomicons iconset, and is used here under the MIT license: http://opensource.org/licenses/MIT. diff --git a/notify-link-clicks/background-script.js b/notify-link-clicks/background-script.js index d12caa9..6d70b9a 100644 --- a/notify-link-clicks/background-script.js +++ b/notify-link-clicks/background-script.js @@ -4,7 +4,7 @@ function notify(message) { console.log("background script received message"); chrome.notifications.create({ "type": "basic", - "iconUrl": chrome.extension.getURL("link.png"), + "iconUrl": chrome.extension.getURL("icons/link-48.png"), "title": "You clicked a link!", "message": message.url }); diff --git a/notify-link-clicks/icons/LICENSE b/notify-link-clicks/icons/LICENSE new file mode 100644 index 0000000..db757d0 --- /dev/null +++ b/notify-link-clicks/icons/LICENSE @@ -0,0 +1 @@ +The "link-48.png" and "link-64.png" icons are taken from the Geomicons iconset, and are used here under the MIT license: http://opensource.org/licenses/MIT. diff --git a/notify-link-clicks/link.png b/notify-link-clicks/icons/link-48.png similarity index 100% rename from notify-link-clicks/link.png rename to notify-link-clicks/icons/link-48.png diff --git a/notify-link-clicks/icons/link-64.png b/notify-link-clicks/icons/link-64.png new file mode 100644 index 0000000..3aa9b5a Binary files /dev/null and b/notify-link-clicks/icons/link-64.png differ diff --git a/notify-link-clicks/manifest.json b/notify-link-clicks/manifest.json index d63b573..7318d6f 100644 --- a/notify-link-clicks/manifest.json +++ b/notify-link-clicks/manifest.json @@ -5,6 +5,10 @@ "name": "Notify link clicks", "version": "1.0", "homepage_url": "https://github.com/mdn/webextensions-examples/tree/master/notify-link-clicks", + "icons": { + "48": "icons/link-48.png", + "64": "icons/link-64.png" + }, "applications": { "gecko": { diff --git a/open-my-page-button/button/LICENSE b/open-my-page-button/button/LICENSE deleted file mode 100644 index c3727aa..0000000 --- a/open-my-page-button/button/LICENSE +++ /dev/null @@ -1 +0,0 @@ -The icon "beasts.png" is taken from the IconBeast Lite iconset, and used under the terms of its license (http://www.iconbeast.com/faq/), with a link back to the website: http://www.iconbeast.com/free/. diff --git a/open-my-page-button/button/beasts.png b/open-my-page-button/button/beasts.png deleted file mode 100644 index bcf6379..0000000 Binary files a/open-my-page-button/button/beasts.png and /dev/null differ diff --git a/open-my-page-button/icons/LICENSE b/open-my-page-button/icons/LICENSE new file mode 100644 index 0000000..e31c9e4 --- /dev/null +++ b/open-my-page-button/icons/LICENSE @@ -0,0 +1,2 @@ + +The "page-32.png" and "page-64.png" icons are taken from the miu iconset created by Linh Pham Thi Dieu, and are used under the terms of its license: http://linhpham.me/miu/. diff --git a/open-my-page-button/icons/page-32.png b/open-my-page-button/icons/page-32.png new file mode 100644 index 0000000..dae663d Binary files /dev/null and b/open-my-page-button/icons/page-32.png differ diff --git a/open-my-page-button/icons/page-64.png b/open-my-page-button/icons/page-64.png new file mode 100644 index 0000000..24eeb8d Binary files /dev/null and b/open-my-page-button/icons/page-64.png differ diff --git a/open-my-page-button/manifest.json b/open-my-page-button/manifest.json index b5e4c6b..4b9df95 100644 --- a/open-my-page-button/manifest.json +++ b/open-my-page-button/manifest.json @@ -5,6 +5,10 @@ "name": "open-my-page", "version": "1.0", "homepage_url": "https://github.com/mdn/webextensions-examples/tree/master/open-my-page-button", + "icons": { + "32": "icons/page-32.png", + "64": "icons/page-64.png" + }, "applications": { "gecko": { @@ -17,7 +21,7 @@ }, "browser_action": { - "default_icon": "button/beasts.png" + "default_icon": "icons/page-32.png" } } diff --git a/page-to-extension-messaging/icons/LICENSE b/page-to-extension-messaging/icons/LICENSE new file mode 100644 index 0000000..87e7cf0 --- /dev/null +++ b/page-to-extension-messaging/icons/LICENSE @@ -0,0 +1,2 @@ + +The "message-32.png" and "message-64.png" icons are taken from the miu iconset created by Linh Pham Thi Dieu, and are used under the terms of its license: http://linhpham.me/miu/. diff --git a/page-to-extension-messaging/icons/message-32.png b/page-to-extension-messaging/icons/message-32.png new file mode 100644 index 0000000..2f48683 Binary files /dev/null and b/page-to-extension-messaging/icons/message-32.png differ diff --git a/page-to-extension-messaging/icons/message-64.png b/page-to-extension-messaging/icons/message-64.png new file mode 100644 index 0000000..7c22687 Binary files /dev/null and b/page-to-extension-messaging/icons/message-64.png differ diff --git a/page-to-extension-messaging/manifest.json b/page-to-extension-messaging/manifest.json index c0a84b4..0959ec1 100644 --- a/page-to-extension-messaging/manifest.json +++ b/page-to-extension-messaging/manifest.json @@ -5,6 +5,10 @@ "description": "Visit https://mdn.github.io/webextensions-examples/content-script-page-script-messaging.html for the demo. See https://developer.mozilla.org/en-US/Add-ons/WebExtensions/Examples#page-to-extension-messaging", "version": "1.0", "homepage_url": "https://github.com/mdn/webextensions-examples/tree/master/page-to-extension-messaging", + "icons": { + "32": "icons/message-32.png", + "64": "icons/message-64.png" + }, "applications": { "gecko": { diff --git a/user-agent-rewriter/button/LICENSE b/user-agent-rewriter/button/LICENSE deleted file mode 100644 index 5a4c0a5..0000000 --- a/user-agent-rewriter/button/LICENSE +++ /dev/null @@ -1 +0,0 @@ -The icon “choose_ua.png” is taken from Yummygum’s Iconsweets iconset, and is used under the terms of its license (http://yummygum.com/work/iconsweets). diff --git a/user-agent-rewriter/button/choose_ua.png b/user-agent-rewriter/button/choose_ua.png deleted file mode 100644 index 08b9108..0000000 Binary files a/user-agent-rewriter/button/choose_ua.png and /dev/null differ diff --git a/user-agent-rewriter/icons/LICENSE b/user-agent-rewriter/icons/LICENSE new file mode 100644 index 0000000..01d3dce --- /dev/null +++ b/user-agent-rewriter/icons/LICENSE @@ -0,0 +1 @@ +The "person-32.png" and "person-64.png" icons are taken from the Ionicons iconset (http://ionicons.com/), and are used here under the MIT license: http://opensource.org/licenses/MIT. diff --git a/user-agent-rewriter/icons/person-32.png b/user-agent-rewriter/icons/person-32.png new file mode 100644 index 0000000..38a16bd Binary files /dev/null and b/user-agent-rewriter/icons/person-32.png differ diff --git a/user-agent-rewriter/icons/person-64.png b/user-agent-rewriter/icons/person-64.png new file mode 100644 index 0000000..048d44d Binary files /dev/null and b/user-agent-rewriter/icons/person-64.png differ diff --git a/user-agent-rewriter/manifest.json b/user-agent-rewriter/manifest.json index e3bd09f..edcbd30 100644 --- a/user-agent-rewriter/manifest.json +++ b/user-agent-rewriter/manifest.json @@ -5,6 +5,10 @@ "name": "user-agent-rewriter", "version": "1.0", "homepage_url": "https://github.com/mdn/webextensions-examples/tree/master/user-agent-rewriter", + "icons": { + "32": "icons/person-32.png", + "64": "icons/person-64.png" + }, "applications": { "gecko": { @@ -19,9 +23,9 @@ "background": { "scripts": ["background.js"] }, - + "browser_action": { - "default_icon": "button/choose_ua.png", + "default_icon": "icons/person-32.png", "default_title": "Choose a user agent", "default_popup": "popup/choose_ua.html" }