Inspect and view changes in Notebook LM Source Getter 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": "Notebook LM Source Getter",
"version": "3",
"description": "Capture and upload links to NotebookLM",
"icons": {
"16": "assets/icon16.png",
"48": "assets/icon48.png",
"128": "assets/icon128.png"
},
"action": {
"default_icon": {
"16": "assets/icon16.png",
"48": "assets/icon48.png",
"128": "assets/icon128.png"
},
"default_title": "AI Bridge"
},
"background": {
"service_worker": "js/background.js"
},
"permissions": [
"activeTab",
"storage",
"scripting"
],
"host_permissions": [
"https://notebooklm.google.com/*"
],
"web_accessible_resources": [
{
"resources": [
"css/styles.css"
],
"matches": [
"<all_urls>"
]
}
]
}