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": "YouTube AI Math Transcriber \u2013 LaTeX, Markdown, PDF, TXT",
"version": "1.6.0",
"description": "Extract YouTube video transcripts and convert them to formatted documents with AI-powered processing.",
"author": "WebNotes",
"permissions": [
"scripting",
"activeTab",
"tabs",
"storage",
"sidePanel",
"identity"
],
"host_permissions": [
"https:\/\/www.youtube.com\/*",
"https:\/\/api.getwebnotes.com\/*"
],
"background": {
"service_worker": "background.js"
},
"action": {
"default_title": "Open YouTube AI Math Transcriber"
},
"side_panel": {
"default_path": "sidepanel.html"
},
"content_scripts": [
{
"matches": [
"https:\/\/www.youtube.com\/watch*"
],
"js": [
"content.js"
],
"run_at": "document_start"
}
],
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
}
}