Inspect and view changes in Google Meet Captions Logger - Google Meet 字幕ログ source codes across current and past versions
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",
"manifest_version": 3,
"name": "Google Meet Captions Logger - Google Meet 字幕ログ",
"version": "1.2.5",
"description": "Google Meetの会議中に表示される字幕を保存します",
"icons": {
"48": "icons/icon.png"
},
"permissions": [
"storage"
],
"action": {
"default_popup": "popup/popup.html"
},
"content_scripts": [
{
"matches": [
"https://meet.google.com/*"
],
"js": [
"content.js"
]
}
]
}