Inspect and view changes in LaTeX in Slack 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",
"content_scripts": [
{
"all_frames": true,
"js": [
"content.js"
],
"matches": [
"*://*.slack.com/*"
]
}
],
"description": "Render LaTeX in Slack chat.",
"manifest_version": 2,
"name": "LaTeX in Slack",
"short_name": "latex-slack",
"options_ui": {
"page": "options.html",
"open_in_tab": false
},
"browser_specific_settings": {
"gecko": {
"id": "{344e6ebd-84a3-422d-8460-b954d1bc6bf8}"
}
},
"permissions": [
"storage"
],
"version": "0.5.1",
"icons": {
"32": "icon32.png",
"48": "icon48.png",
"128": "icon128.png"
}
}