Use YouTube Transcription to transcribe video to text and effortlessly obtain a transcript of YouTube videos.
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",
"name": "__MSG_appName__",
"description": "__MSG_shortDesc__",
"manifest_version": 3,
"default_locale": "en",
"version": "1.0.3",
"background": {
"service_worker": "background.js"
},
"icons": {
"16": "icons/16x16.png",
"32": "icons/32x32.png",
"48": "icons/48x48.png",
"64": "icons/64x64.png",
"128": "icons/128x128.png"
},
"content_scripts": [
{
"matches": [
"*://*.youtube.com/*"
],
"js": [
"mainWorld.js"
],
"all_frames": false,
"run_at": "document_start",
"world": "MAIN"
},
{
"matches": [
"*://*.youtube.com/*"
],
"js": [
"index.js"
],
"css": [
"trans.css"
],
"all_frames": false,
"world": "ISOLATED"
}
],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
},
"permissions": [
"storage"
],
"host_permissions": [
"https://*/*"
],
"web_accessible_resources": [
{
"resources": [
"icons/*.png"
],
"matches": [
"http://*/*",
"https://*/*"
]
}
]
}