Inspect and view changes in Slack Beeegmojis 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
{
"manifest_version": 2,
"name": "Slack Beeegmojis",
"version": "0.12.0",
"description": "Makes emojis in Slack bigger so you can actually appreciate them.",
"homepage_url": "https://github.com/atl-mk/slack-beeegmojis",
"icons": {
"32": "icon32.png",
"48": "icon48.png",
"64": "icon64.png",
"128": "icon128.png",
"512": "icon512.png"
},
"browser_action": {
"browser_style": true,
"default_title": "Slack Beeegmojis",
"default_popup": "extension-popup.html",
"default_icon": {
"32": "icon32.png",
"48": "icon48.png",
"64": "icon64.png",
"128": "icon128.png",
"512": "icon512.png"
}
},
"content_scripts": [
{
"matches": [
"*://app.slack.com/client/*"
],
"js": [
"browser-polyfill.min.js",
"extension-change-size.js"
]
}
],
"permissions": [
"*://app.slack.com/client/*",
"storage"
],
"web_accessible_resources": [
"*.css"
],
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}