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",
"name": "Luther AI",
"description": "Talk. Translate. Type. Luther AI converts your voice into polished, funny, or corporate-perfect writing.",
"version": "1.0",
"manifest_version": 3,
"permissions": [
"storage",
"scripting",
"activeTab",
"tabs",
"alarms"
],
"action": {
"default_title": "Luther AI",
"default_icon": {
"16": "icon.png",
"32": "icon.png",
"48": "icon.png",
"128": "icon.png"
}
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content.js"
],
"run_at": "document_idle"
},
{
"matches": [
"*:\/\/luther-ai.com\/*"
],
"js": [
"activation.js"
],
"run_at": "document_idle"
}
],
"icons": {
"16": "icon.png",
"32": "icon.png",
"48": "icon.png",
"128": "icon.png"
},
"commands": {
"_execute_action": {
"suggested_key": {
"default": "Alt+L"
},
"description": "Start\/Stop Luther AI"
},
"open_reset_page": {
"suggested_key": {
"default": "Alt+R"
},
"description": "Open Reset Data Page"
}
},
"web_accessible_resources": [
{
"resources": [
"reset-data.html"
],
"matches": [
"<all_urls>"
]
}
]
}