Inspect and view changes in Slack Emoji Uploader source codes across current and past versions
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"background": {
"scripts": [
"background.js"
]
},
"description": "Add emojis to slack!",
"icons": {
"16": "icons/16.png",
"24": "icons/24.png",
"32": "icons/32.png",
"124": "icons/124.png",
"128": "icons/128.png"
},
"offline_enabled": false,
"browser_action": {
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": [
"*://*.slackmojis.com/*"
],
"js": [
"slackmojis.js"
]
}
],
"manifest_version": 2,
"name": "Slack Emoji Uploader",
"permissions": [
"contextMenus",
"storage",
"notifications",
"http://*/*",
"https://*/*",
"file://*/*"
],
"options_ui": {
"page": "options.html",
"chrome_style": true
},
"version": "1.3.9",
"minimum_chrome_version": "50.0.0.0"
}