Data is synced from the Chrome Web Store. View the official store page for the most current information.
This extension is no longer available on the Chrome Web Store. We noticed it was gone on Aug 26, 2025.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Maths Typer",
"version": "1.0",
"description": "Easily insert math symbols from your keyboard using simple commands. Easy to use, supports diacritics, double-struck chars, and more",
"icons": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"permissions": [
"activeTab"
],
"action": {
"default_popup": "popup.html",
"default_icon": "icons\/icon128.png"
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content.js"
]
}
],
"commands": {
"toggle_math_mode": {
"suggested_key": {
"default": "Ctrl+M"
},
"description": "Toggle Math Mode"
},
"open_popup": {
"suggested_key": {
"default": "Ctrl+B"
},
"description": "Open Popup"
}
},
"web_accessible_resources": [
{
"resources": [
"icons\/*"
],
"matches": [
"<all_urls>"
]
}
]
}