Mattermost Meme Plus by ntheanh201
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"name": "Mattermost Meme Plus",
"description": "Mattermost Meme Plus by ntheanh201",
"version": "3.1",
"manifest_version": 3,
"icons": {
"16": "icon.png",
"48": "icon.png",
"128": "icon.png"
},
"permissions": [
"activeTab",
"storage"
],
"host_permissions": [
"https://*.mattermost.com/*",
"http://mattermost.*/*",
"https://mattermost.*/*"
],
"action": {
"default_icon": "icon.png",
"default_title": "Mattermost Meme Plus"
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"jquery.js",
"insert.js"
],
"css": [
"newEmoji.css"
],
"run_at": "document_end"
}
],
"web_accessible_resources": [
{
"resources": [
"img/*"
],
"matches": [
"*://*/*"
]
},
{
"resources": [
"data/emo_url.json"
],
"matches": [
"*://*/*"
]
}
],
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}