Convert audio to text. Automatically record and transcribe your meetings, and other conversations with Transkriptor.
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",
"icons": {
"16": "icon16.plasmo.6c567d50.png",
"32": "icon32.plasmo.76b92899.png",
"48": "icon48.plasmo.aced7582.png",
"64": "icon64.plasmo.8bb5e6e0.png",
"128": "icon128.plasmo.3c1ed2d2.png"
},
"manifest_version": 3,
"action": {
"default_icon": {
"16": "icon16.plasmo.6c567d50.png",
"32": "icon32.plasmo.76b92899.png",
"48": "icon48.plasmo.aced7582.png",
"64": "icon64.plasmo.8bb5e6e0.png",
"128": "icon128.plasmo.3c1ed2d2.png"
},
"default_popup": "popup.html"
},
"version": "2.4.5",
"author": "Transkriptor",
"name": "__MSG_appName__",
"description": "__MSG_appDesc__",
"background": {
"service_worker": "static/background/index.js"
},
"permissions": [
"scripting",
"activeTab",
"tabs",
"storage",
"tabCapture",
"webNavigation"
],
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content.7f229555.js"
],
"css": []
},
{
"matches": [
"https://meet.google.com/*"
],
"js": [
"meeting.ac29643f.js"
],
"css": []
},
{
"matches": [
"https://www.youtube.com/watch*"
],
"js": [
"youtube.ce6629fd.js"
],
"css": []
}
],
"default_locale": "en",
"host_permissions": [
"https://*/*",
"chrome-extension://icfcmkiimkhacehcamdiaglmpolpiklm/tabs/recorder.html"
],
"externally_connectable": {
"matches": [
"https://app.transkriptor.com/*"
]
},
"web_accessible_resources": [
{
"resources": [
"recorder.html",
"/tabs/permission.html",
"/tabs/permission.ts",
"/tabs/cameraTrack.html",
"/tabs/cameraTrack.ts"
],
"matches": [
"<all_urls>"
]
},
{
"matches": [
"<all_urls>"
],
"resources": [
"content.5b83a17a.css",
"content.4aa3939e.svg",
"content.8c6654cb.svg",
"content.4bed6b0d.png",
"content.c3a50357.png",
"content.d623876f.svg",
"content.24e4522a.webp",
"content.cccc132f.webp",
"content.6ed82600.webp",
"content.3063bf21.svg",
"content.0d58b0b6.webp",
"content.c43061b9.svg",
"content.31184bb4.webp",
"content.edc1dafb.png"
]
},
{
"matches": [
"https://meet.google.com/*"
],
"resources": [
"meeting.89f7e61f.png",
"content.4aa3939e.svg",
"meeting.b461766f.svg",
"meeting.13fb60fa.png",
"content.5b83a17a.css",
"content.c3a50357.png"
]
},
{
"matches": [
"https://www.youtube.com/*"
],
"resources": [
"content.4aa3939e.svg",
"content.5b83a17a.css"
]
}
],
"commands": {
"start-tab-capture": {
"suggested_key": {
"default": "Ctrl+Shift+S",
"windows": "Ctrl+Shift+S",
"mac": "Command+Shift+S"
},
"description": "Start Google Meet Recording"
}
}
}