├── .gitattributes ├── .gitignore ├── AddInCompose └── TaskPane │ ├── TaskPane.html │ ├── TaskPane.js │ ├── TaskPane.scss │ ├── emoji.css │ ├── emoji.js │ └── emoji.json ├── CleanEmojiJson.csx ├── EmojiAddin.xml ├── Images ├── desktop.png ├── desktop.xcf ├── icon128.png ├── icon16.png ├── icon32.png ├── icon64.png ├── icon80.png ├── icon96.png ├── thunderbird.png └── web.png ├── LICENSE ├── README.md ├── Scripts ├── jquery.linq.js └── jquery.linq.min.js ├── gulpfile.js ├── icomoon ├── fonts │ ├── icomoon.eot │ ├── icomoon.svg │ ├── icomoon.ttf │ └── icomoon.woff ├── selection.json └── style.css ├── issue_template.md ├── omnisharp.json ├── package.json └── thunderbird └── emoji@ganss.org ├── _locales ├── de │ └── messages.json └── en │ └── messages.json ├── background.js ├── chrome ├── content │ ├── TaskPane.js │ ├── emoji.css │ ├── emoji.html │ ├── emoji.js │ ├── emoji.json │ ├── emoji_compose.js │ ├── icomoon │ │ ├── fonts │ │ │ ├── icomoon.eot │ │ │ ├── icomoon.svg │ │ │ ├── icomoon.ttf │ │ │ └── icomoon.woff │ │ ├── selection.json │ │ └── style.css │ ├── jquery-3.1.1.min.js │ ├── skin │ │ ├── button.svg │ │ └── icon.svg │ └── sprites │ │ ├── joypixels-sprite-32-activity.png │ │ ├── joypixels-sprite-32-activity@2x.png │ │ ├── joypixels-sprite-32-diversity.png │ │ ├── joypixels-sprite-32-diversity@2x.png │ │ ├── joypixels-sprite-32-flags.png │ │ ├── joypixels-sprite-32-flags@2x.png │ │ ├── joypixels-sprite-32-food.png │ │ ├── joypixels-sprite-32-food@2x.png │ │ ├── joypixels-sprite-32-nature.png │ │ ├── joypixels-sprite-32-nature@2x.png │ │ ├── joypixels-sprite-32-objects.png │ │ ├── joypixels-sprite-32-objects@2x.png │ │ ├── joypixels-sprite-32-people.png │ │ ├── joypixels-sprite-32-people@2x.png │ │ ├── joypixels-sprite-32-regional.png │ │ ├── joypixels-sprite-32-regional@2x.png │ │ ├── joypixels-sprite-32-symbols.png │ │ ├── joypixels-sprite-32-symbols@2x.png │ │ ├── joypixels-sprite-32-travel.png │ │ ├── joypixels-sprite-32-travel@2x.png │ │ └── joypixels-sprite-32.min.css └── locale │ ├── de-DE │ └── emoji.dtd │ └── en-US │ └── emoji.dtd ├── manifest.json ├── options.html └── options.js /.gitattributes: -------------------------------------------------------------------------------- 1 | thunderbird/emoji@ganss.org/chrome/content/jquery*.js eol=lf 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mganss/EmojiAddIn/HEAD/.gitignore -------------------------------------------------------------------------------- /AddInCompose/TaskPane/TaskPane.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mganss/EmojiAddIn/HEAD/AddInCompose/TaskPane/TaskPane.html -------------------------------------------------------------------------------- /AddInCompose/TaskPane/TaskPane.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mganss/EmojiAddIn/HEAD/AddInCompose/TaskPane/TaskPane.js -------------------------------------------------------------------------------- /AddInCompose/TaskPane/TaskPane.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mganss/EmojiAddIn/HEAD/AddInCompose/TaskPane/TaskPane.scss -------------------------------------------------------------------------------- /AddInCompose/TaskPane/emoji.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mganss/EmojiAddIn/HEAD/AddInCompose/TaskPane/emoji.css -------------------------------------------------------------------------------- /AddInCompose/TaskPane/emoji.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mganss/EmojiAddIn/HEAD/AddInCompose/TaskPane/emoji.js -------------------------------------------------------------------------------- /AddInCompose/TaskPane/emoji.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mganss/EmojiAddIn/HEAD/AddInCompose/TaskPane/emoji.json -------------------------------------------------------------------------------- /CleanEmojiJson.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mganss/EmojiAddIn/HEAD/CleanEmojiJson.csx -------------------------------------------------------------------------------- /EmojiAddin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mganss/EmojiAddIn/HEAD/EmojiAddin.xml -------------------------------------------------------------------------------- /Images/desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mganss/EmojiAddIn/HEAD/Images/desktop.png -------------------------------------------------------------------------------- /Images/desktop.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mganss/EmojiAddIn/HEAD/Images/desktop.xcf -------------------------------------------------------------------------------- /Images/icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mganss/EmojiAddIn/HEAD/Images/icon128.png -------------------------------------------------------------------------------- /Images/icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mganss/EmojiAddIn/HEAD/Images/icon16.png -------------------------------------------------------------------------------- /Images/icon32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mganss/EmojiAddIn/HEAD/Images/icon32.png -------------------------------------------------------------------------------- /Images/icon64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mganss/EmojiAddIn/HEAD/Images/icon64.png -------------------------------------------------------------------------------- /Images/icon80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mganss/EmojiAddIn/HEAD/Images/icon80.png -------------------------------------------------------------------------------- /Images/icon96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mganss/EmojiAddIn/HEAD/Images/icon96.png -------------------------------------------------------------------------------- /Images/thunderbird.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mganss/EmojiAddIn/HEAD/Images/thunderbird.png -------------------------------------------------------------------------------- /Images/web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mganss/EmojiAddIn/HEAD/Images/web.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mganss/EmojiAddIn/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mganss/EmojiAddIn/HEAD/README.md -------------------------------------------------------------------------------- /Scripts/jquery.linq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mganss/EmojiAddIn/HEAD/Scripts/jquery.linq.js -------------------------------------------------------------------------------- /Scripts/jquery.linq.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mganss/EmojiAddIn/HEAD/Scripts/jquery.linq.min.js -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mganss/EmojiAddIn/HEAD/gulpfile.js -------------------------------------------------------------------------------- /icomoon/fonts/icomoon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mganss/EmojiAddIn/HEAD/icomoon/fonts/icomoon.eot -------------------------------------------------------------------------------- /icomoon/fonts/icomoon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mganss/EmojiAddIn/HEAD/icomoon/fonts/icomoon.svg -------------------------------------------------------------------------------- /icomoon/fonts/icomoon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mganss/EmojiAddIn/HEAD/icomoon/fonts/icomoon.ttf -------------------------------------------------------------------------------- /icomoon/fonts/icomoon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mganss/EmojiAddIn/HEAD/icomoon/fonts/icomoon.woff -------------------------------------------------------------------------------- /icomoon/selection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mganss/EmojiAddIn/HEAD/icomoon/selection.json -------------------------------------------------------------------------------- /icomoon/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mganss/EmojiAddIn/HEAD/icomoon/style.css -------------------------------------------------------------------------------- /issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mganss/EmojiAddIn/HEAD/issue_template.md -------------------------------------------------------------------------------- /omnisharp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mganss/EmojiAddIn/HEAD/omnisharp.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mganss/EmojiAddIn/HEAD/package.json -------------------------------------------------------------------------------- /thunderbird/emoji@ganss.org/_locales/de/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mganss/EmojiAddIn/HEAD/thunderbird/emoji@ganss.org/_locales/de/messages.json -------------------------------------------------------------------------------- /thunderbird/emoji@ganss.org/_locales/en/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mganss/EmojiAddIn/HEAD/thunderbird/emoji@ganss.org/_locales/en/messages.json -------------------------------------------------------------------------------- /thunderbird/emoji@ganss.org/background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mganss/EmojiAddIn/HEAD/thunderbird/emoji@ganss.org/background.js -------------------------------------------------------------------------------- /thunderbird/emoji@ganss.org/chrome/content/TaskPane.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mganss/EmojiAddIn/HEAD/thunderbird/emoji@ganss.org/chrome/content/TaskPane.js -------------------------------------------------------------------------------- /thunderbird/emoji@ganss.org/chrome/content/emoji.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mganss/EmojiAddIn/HEAD/thunderbird/emoji@ganss.org/chrome/content/emoji.css -------------------------------------------------------------------------------- /thunderbird/emoji@ganss.org/chrome/content/emoji.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mganss/EmojiAddIn/HEAD/thunderbird/emoji@ganss.org/chrome/content/emoji.html -------------------------------------------------------------------------------- /thunderbird/emoji@ganss.org/chrome/content/emoji.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mganss/EmojiAddIn/HEAD/thunderbird/emoji@ganss.org/chrome/content/emoji.js -------------------------------------------------------------------------------- /thunderbird/emoji@ganss.org/chrome/content/emoji.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mganss/EmojiAddIn/HEAD/thunderbird/emoji@ganss.org/chrome/content/emoji.json -------------------------------------------------------------------------------- /thunderbird/emoji@ganss.org/chrome/content/emoji_compose.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mganss/EmojiAddIn/HEAD/thunderbird/emoji@ganss.org/chrome/content/emoji_compose.js -------------------------------------------------------------------------------- /thunderbird/emoji@ganss.org/chrome/content/icomoon/fonts/icomoon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mganss/EmojiAddIn/HEAD/thunderbird/emoji@ganss.org/chrome/content/icomoon/fonts/icomoon.eot -------------------------------------------------------------------------------- /thunderbird/emoji@ganss.org/chrome/content/icomoon/fonts/icomoon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mganss/EmojiAddIn/HEAD/thunderbird/emoji@ganss.org/chrome/content/icomoon/fonts/icomoon.svg -------------------------------------------------------------------------------- /thunderbird/emoji@ganss.org/chrome/content/icomoon/fonts/icomoon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mganss/EmojiAddIn/HEAD/thunderbird/emoji@ganss.org/chrome/content/icomoon/fonts/icomoon.ttf -------------------------------------------------------------------------------- /thunderbird/emoji@ganss.org/chrome/content/icomoon/fonts/icomoon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mganss/EmojiAddIn/HEAD/thunderbird/emoji@ganss.org/chrome/content/icomoon/fonts/icomoon.woff -------------------------------------------------------------------------------- /thunderbird/emoji@ganss.org/chrome/content/icomoon/selection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mganss/EmojiAddIn/HEAD/thunderbird/emoji@ganss.org/chrome/content/icomoon/selection.json -------------------------------------------------------------------------------- /thunderbird/emoji@ganss.org/chrome/content/icomoon/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mganss/EmojiAddIn/HEAD/thunderbird/emoji@ganss.org/chrome/content/icomoon/style.css -------------------------------------------------------------------------------- /thunderbird/emoji@ganss.org/chrome/content/jquery-3.1.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mganss/EmojiAddIn/HEAD/thunderbird/emoji@ganss.org/chrome/content/jquery-3.1.1.min.js -------------------------------------------------------------------------------- /thunderbird/emoji@ganss.org/chrome/content/skin/button.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mganss/EmojiAddIn/HEAD/thunderbird/emoji@ganss.org/chrome/content/skin/button.svg -------------------------------------------------------------------------------- /thunderbird/emoji@ganss.org/chrome/content/skin/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mganss/EmojiAddIn/HEAD/thunderbird/emoji@ganss.org/chrome/content/skin/icon.svg -------------------------------------------------------------------------------- /thunderbird/emoji@ganss.org/chrome/content/sprites/joypixels-sprite-32-activity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mganss/EmojiAddIn/HEAD/thunderbird/emoji@ganss.org/chrome/content/sprites/joypixels-sprite-32-activity.png -------------------------------------------------------------------------------- /thunderbird/emoji@ganss.org/chrome/content/sprites/joypixels-sprite-32-activity@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mganss/EmojiAddIn/HEAD/thunderbird/emoji@ganss.org/chrome/content/sprites/joypixels-sprite-32-activity@2x.png -------------------------------------------------------------------------------- /thunderbird/emoji@ganss.org/chrome/content/sprites/joypixels-sprite-32-diversity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mganss/EmojiAddIn/HEAD/thunderbird/emoji@ganss.org/chrome/content/sprites/joypixels-sprite-32-diversity.png -------------------------------------------------------------------------------- /thunderbird/emoji@ganss.org/chrome/content/sprites/joypixels-sprite-32-diversity@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mganss/EmojiAddIn/HEAD/thunderbird/emoji@ganss.org/chrome/content/sprites/joypixels-sprite-32-diversity@2x.png -------------------------------------------------------------------------------- /thunderbird/emoji@ganss.org/chrome/content/sprites/joypixels-sprite-32-flags.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mganss/EmojiAddIn/HEAD/thunderbird/emoji@ganss.org/chrome/content/sprites/joypixels-sprite-32-flags.png -------------------------------------------------------------------------------- /thunderbird/emoji@ganss.org/chrome/content/sprites/joypixels-sprite-32-flags@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mganss/EmojiAddIn/HEAD/thunderbird/emoji@ganss.org/chrome/content/sprites/joypixels-sprite-32-flags@2x.png -------------------------------------------------------------------------------- /thunderbird/emoji@ganss.org/chrome/content/sprites/joypixels-sprite-32-food.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mganss/EmojiAddIn/HEAD/thunderbird/emoji@ganss.org/chrome/content/sprites/joypixels-sprite-32-food.png -------------------------------------------------------------------------------- /thunderbird/emoji@ganss.org/chrome/content/sprites/joypixels-sprite-32-food@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mganss/EmojiAddIn/HEAD/thunderbird/emoji@ganss.org/chrome/content/sprites/joypixels-sprite-32-food@2x.png -------------------------------------------------------------------------------- /thunderbird/emoji@ganss.org/chrome/content/sprites/joypixels-sprite-32-nature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mganss/EmojiAddIn/HEAD/thunderbird/emoji@ganss.org/chrome/content/sprites/joypixels-sprite-32-nature.png -------------------------------------------------------------------------------- /thunderbird/emoji@ganss.org/chrome/content/sprites/joypixels-sprite-32-nature@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mganss/EmojiAddIn/HEAD/thunderbird/emoji@ganss.org/chrome/content/sprites/joypixels-sprite-32-nature@2x.png -------------------------------------------------------------------------------- /thunderbird/emoji@ganss.org/chrome/content/sprites/joypixels-sprite-32-objects.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mganss/EmojiAddIn/HEAD/thunderbird/emoji@ganss.org/chrome/content/sprites/joypixels-sprite-32-objects.png -------------------------------------------------------------------------------- /thunderbird/emoji@ganss.org/chrome/content/sprites/joypixels-sprite-32-objects@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mganss/EmojiAddIn/HEAD/thunderbird/emoji@ganss.org/chrome/content/sprites/joypixels-sprite-32-objects@2x.png -------------------------------------------------------------------------------- /thunderbird/emoji@ganss.org/chrome/content/sprites/joypixels-sprite-32-people.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mganss/EmojiAddIn/HEAD/thunderbird/emoji@ganss.org/chrome/content/sprites/joypixels-sprite-32-people.png -------------------------------------------------------------------------------- /thunderbird/emoji@ganss.org/chrome/content/sprites/joypixels-sprite-32-people@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mganss/EmojiAddIn/HEAD/thunderbird/emoji@ganss.org/chrome/content/sprites/joypixels-sprite-32-people@2x.png -------------------------------------------------------------------------------- /thunderbird/emoji@ganss.org/chrome/content/sprites/joypixels-sprite-32-regional.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mganss/EmojiAddIn/HEAD/thunderbird/emoji@ganss.org/chrome/content/sprites/joypixels-sprite-32-regional.png -------------------------------------------------------------------------------- /thunderbird/emoji@ganss.org/chrome/content/sprites/joypixels-sprite-32-regional@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mganss/EmojiAddIn/HEAD/thunderbird/emoji@ganss.org/chrome/content/sprites/joypixels-sprite-32-regional@2x.png -------------------------------------------------------------------------------- /thunderbird/emoji@ganss.org/chrome/content/sprites/joypixels-sprite-32-symbols.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mganss/EmojiAddIn/HEAD/thunderbird/emoji@ganss.org/chrome/content/sprites/joypixels-sprite-32-symbols.png -------------------------------------------------------------------------------- /thunderbird/emoji@ganss.org/chrome/content/sprites/joypixels-sprite-32-symbols@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mganss/EmojiAddIn/HEAD/thunderbird/emoji@ganss.org/chrome/content/sprites/joypixels-sprite-32-symbols@2x.png -------------------------------------------------------------------------------- /thunderbird/emoji@ganss.org/chrome/content/sprites/joypixels-sprite-32-travel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mganss/EmojiAddIn/HEAD/thunderbird/emoji@ganss.org/chrome/content/sprites/joypixels-sprite-32-travel.png -------------------------------------------------------------------------------- /thunderbird/emoji@ganss.org/chrome/content/sprites/joypixels-sprite-32-travel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mganss/EmojiAddIn/HEAD/thunderbird/emoji@ganss.org/chrome/content/sprites/joypixels-sprite-32-travel@2x.png -------------------------------------------------------------------------------- /thunderbird/emoji@ganss.org/chrome/content/sprites/joypixels-sprite-32.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mganss/EmojiAddIn/HEAD/thunderbird/emoji@ganss.org/chrome/content/sprites/joypixels-sprite-32.min.css -------------------------------------------------------------------------------- /thunderbird/emoji@ganss.org/chrome/locale/de-DE/emoji.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mganss/EmojiAddIn/HEAD/thunderbird/emoji@ganss.org/chrome/locale/de-DE/emoji.dtd -------------------------------------------------------------------------------- /thunderbird/emoji@ganss.org/chrome/locale/en-US/emoji.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mganss/EmojiAddIn/HEAD/thunderbird/emoji@ganss.org/chrome/locale/en-US/emoji.dtd -------------------------------------------------------------------------------- /thunderbird/emoji@ganss.org/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mganss/EmojiAddIn/HEAD/thunderbird/emoji@ganss.org/manifest.json -------------------------------------------------------------------------------- /thunderbird/emoji@ganss.org/options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mganss/EmojiAddIn/HEAD/thunderbird/emoji@ganss.org/options.html -------------------------------------------------------------------------------- /thunderbird/emoji@ganss.org/options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mganss/EmojiAddIn/HEAD/thunderbird/emoji@ganss.org/options.js --------------------------------------------------------------------------------