Skip to content

Commit

Permalink
Adjust things for AMO
Browse files Browse the repository at this point in the history
Add description, adjust manifests etc.
  • Loading branch information
rugk committed Mar 23, 2019
1 parent ea6dfc4 commit 0407554
Show file tree
Hide file tree
Showing 7 changed files with 41 additions and 26 deletions.
16 changes: 15 additions & 1 deletion assets/texts/en/amoDescription.html
Original file line number Diff line number Diff line change
@@ -1 +1,15 @@
export your Readme here, and potentially adjust it…
This (Firefox) add-on (WebExtension) gives you a nice emoji picker that you can use to find and emoji. It will be copied to your clipboard, when you click on it.
It uses up-to-date Emojis and let's you access your Emojis in different styles you know from different devices and applications.
It is based on the awesome <a href="https://missive.github.io/emoji-mart/">emoji-mart</a>. You can test many features there already, before installing it.
This extension only works with modern Firefox v63 or higher.

<b>Features</b>
<ul>
<li>Display the emojis in the design of Apple, Google, Twitter, EmojiOne or just the native style your browser uses.</li>
<li>Quickly search for any emoji.</li>
<li>Adjust many options of your Emoji picker!</li>
<li>Follows <a href="https://design.firefox.com/photon">Firefox Photon Design</a>.</li>
<li>Has a simple, but intuitive and usable User Interface.</li>
<li>Compatible with Firefox for Android</li>
<li>[…]</li>
</ul>
2 changes: 1 addition & 1 deletion assets/texts/en/amoSummary.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
This add-on allows you to
This add-on gives you a nice emoji picker that you can use to find and emoji. It will be copied to your clipboard, when you click on it.
4 changes: 3 additions & 1 deletion assets/texts/en/privacy.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
This add-on does not send any information to the add-on author or any third-party.
Currently, this add-on fetches the emoji icons from https://unpkg.com.

This add-on does not send any information to the add-on author.

An explanation of all permissions, this add-on requests, can be found at https://github.com/rugk/awesome-emoji-picker/blob/master/assets/texts/en/permissions.md.
Empty file modified scripts/make.sh
100644 → 100755
Empty file.
21 changes: 10 additions & 11 deletions scripts/manifests/dev.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,21 +2,21 @@
"manifest_version": 2,
"name": "AwesomeEmojiPicker DEV VERSION",
"short_name": "__MSG_extensionNameShort__",
"version": "0.1",
"version": "0.4",
"author": "rugk",

"description": "__MSG_extensionDescription__",
"homepage_url": "https://github.com/rugk/awesome-emoji-picker",

"browser_action": {
"browser_style": true,
"default_icon": "icons/icon-small-dark.svg",
"browser_style": false,
"default_icon": "icons/fa-grin-dark.svg",
"default_title": "__MSG_browserActionButtonTitle__",
"default_popup": "popup/index.html",
"theme_icons": [
{
"dark": "icons/icon-small-dark.svg",
"light": "icons/icon-small-light.svg",
"dark": "icons/fa-grin-dark.svg",
"light": "icons/fa-grin-light.svg",
"size": 32
}
]
Expand All @@ -32,12 +32,11 @@
},

// testing version allows loading unit test libraries from CDNs
"content_security_policy": "default-src 'self'; img-src data: https://unpkg.com; style-src 'self' https://unpkg.com; script-src 'self' https://unpkg.com",
"content_security_policy": "default-src 'self'; img-src data: https://unpkg.com",
"icons": {
"16": "icons/icon-small-colored.svg",
"32": "icons/icon-small-colored.svg",
"48": "icons/icon-large.svg",
"96": "icons/icon-large.svg"
"32": "icons/icon_32.png",
"64": "icons/icon_64.png",
"128": "icons/icon_128.png"
},
"default_locale": "en",

Expand All @@ -48,7 +47,7 @@
"applications": {
"gecko": {
"id": "awesome-emoji-picker@rugk.github.io",
"strict_min_version": "60.0a1"
"strict_min_version": "63.0"
}
}
}
20 changes: 10 additions & 10 deletions scripts/manifests/firefox.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,21 +2,21 @@
"manifest_version": 2,
"name": "__MSG_extensionName__",
"short_name": "__MSG_extensionNameShort__",
"version": "0.1",
"version": "0.4",
"author": "rugk",

"description": "__MSG_extensionDescription__",
"homepage_url": "https://github.com/rugk/awesome-emoji-picker",

"browser_action": {
"browser_style": true,
"default_icon": "icons/icon-small-dark.svg",
"browser_style": false,
"default_icon": "icons/fa-grin-dark.svg",
"default_title": "__MSG_browserActionButtonTitle__",
"default_popup": "popup/index.html",
"theme_icons": [
{
"dark": "icons/icon-small-dark.svg",
"light": "icons/icon-small-light.svg",
"dark": "icons/fa-grin-dark.svg",
"light": "icons/fa-grin-light.svg",
"size": 32
}
]
Expand All @@ -33,20 +33,20 @@

"content_security_policy": "default-src 'self'; img-src https://unpkg.com",
"icons": {
"16": "icons/icon-small-colored.svg",
"32": "icons/icon-small-colored.svg",
"48": "icons/icon-large.svg",
"96": "icons/icon-large.svg"
"32": "icons/icon_32.png",
"64": "icons/icon_64.png",
"128": "icons/icon_128.png"
},
"default_locale": "en",

"permissions": [
"storage"
],

"applications": {
"gecko": {
"id": "awesome-emoji-picker@rugk.github.io",
"strict_min_version": "60.0a1"
"strict_min_version": "63.0"
}
}
}
4 changes: 2 additions & 2 deletions src/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"manifest_version": 2,
"name": "AwesomeEmojiPicker DEV VERSION",
"short_name": "__MSG_extensionNameShort__",
"version": "0.1",
"version": "0.4",
"author": "rugk",

"description": "__MSG_extensionDescription__",
Expand Down Expand Up @@ -47,7 +47,7 @@
"applications": {
"gecko": {
"id": "awesome-emoji-picker@rugk.github.io",
"strict_min_version": "63"
"strict_min_version": "63.0"
}
}
}

0 comments on commit 0407554

Please sign in to comment.