Inspect and view changes in AutoLatex 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",
"manifest_version": 3,
"name": "AutoLatex",
"version": "1.6",
"description": "LLM powered text2latex for math equations, image2latex converter with live markdown and latex rendering, standalone chat mode",
"permissions": [
"activeTab",
"storage",
"sidePanel"
],
"web_accessible_resources": [
{
"resources": [
"katex/*"
],
"matches": [
"<all_urls>"
]
}
],
"action": {
"default_title": "Open AutoLatex"
},
"icons": {
"16": "images/icon16.png",
"24": "images/icon24.png",
"32": "images/icon32.png",
"128": "images/icon128.png"
},
"background": {
"service_worker": "background.js"
},
"options_ui": {
"page": "settings.html",
"open_in_tab": true
},
"commands": {
"_execute_action": {
"suggested_key": {
"default": "Ctrl+Shift+L",
"mac": "Command+Shift+L"
},
"description": "Open LaTeX Renderer"
}
},
"side_panel": {
"default_path": "sidepanel.html",
"default_width": 450
}
}