Data is synced from the Chrome Web Store. View the official store page for the most current information.
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "LatexToCalc", "version": "2.0.0", "description": "Translate LaTeX text to calculator format. Now with MathJax to LaTeX conversion!", "permissions": [ "clipboardRead", "clipboardWrite", "activeTab", "scripting", "commands", "storage" ], "host_permissions": [ "https:\/\/*\/*", "<all_urls>" ], "content_scripts": [ { "matches": [ "<all_urls>" ], "js": [ "mathJaxToLatex\/config\/settings.js", "mathJaxToLatex\/config\/operators.js", "mathJaxToLatex\/config\/functions.js", "mathJaxToLatex\/modules\/module-loader.js", "mathJaxToLatex\/modules\/logger.js", "mathJaxToLatex\/modules\/node-processor.js", "mathJaxToLatex\/modules\/svg-converter.js", "mathJaxToLatex\/modules\/chtml-converter.js", "mathJaxToLatex\/utils.js", "mathJaxToLatex\/fileunicode.js", "mathJaxToLatex\/translate.js", "mathJaxToLatex\/content-mjl.js", "content.js" ], "css": [ "mathJaxToLatex\/styles-mjl.css" ], "run_at": "document_idle" } ], "background": { "service_worker": "background.js" }, "commands": { "translate-clipboard": { "suggested_key": { "default": "Ctrl+Shift+Z", "mac": "Command+Shift+Z" }, "description": "Translate text" } }, "icons": { "48": "icon.png" }, "action": { "default_popup": "popup.html", "default_icon": { "48": "icon.png" } } }