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",
"author": "andrewss <andrewss.krlv@gmail.com>",
"name": "Latex in Slack",
"description": "Renders LaTeX equations in Slack",
"manifest_version": 3,
"action": {
"default_icon": "icon.png"
},
"icons": {
"128": "icon.png"
},
"content_scripts": [
{
"run_at": "document_end",
"matches": [
"*://app.slack.com/*"
],
"css": [
"katex/katex.min.css",
"style.css"
],
"js": [
"index.js"
]
}
],
"version": "1.3.1"
}