mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-11-12 04:25:31 +08:00
199a62d70e
Summary: Adds two (very similar) plugins - Open Tracking and Link Tracking. Both can be enabled via a button in the composer. Open tracking inserts a tracking pixel right before send, and link tracking replaces all links with tracked redirects. Both plugins use the new Metadata service to store their open/click counts, and have backend servers to respectively serve the pixel image or handle the redirects. Requests also trigger a metadata update to increment the open/click counters. Test Plan: Manual for now Reviewers: evan, bengotow, drew Reviewed By: bengotow Differential Revision: https://phab.nylas.com/D2583
27 lines
520 B
JSON
27 lines
520 B
JSON
{
|
|
"name": "composer-emojis",
|
|
"main": "./lib/main",
|
|
"version": "0.1.0",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": ""
|
|
},
|
|
"engines": {
|
|
"nylas": ">=0.3.43-b95f1f7"
|
|
},
|
|
|
|
"isOptional": true,
|
|
|
|
"title":"Emoji Keyboard",
|
|
"icon":"./assets/icon.png",
|
|
"description": "Type a colon (:) followed by the name of an emoji symbol to insert it into your message!",
|
|
|
|
"dependencies": {
|
|
"node-emoji": "^1.0.4"
|
|
},
|
|
"windowTypes": {
|
|
"default": true,
|
|
"composer": true
|
|
},
|
|
"license": "GPL-3.0"
|
|
}
|