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": "NotebookLM Importer",
"description": "Activate this extension to import your notes and links directly into NotebookLM.",
"version": "1.0.0",
"action": {
"default_popup": "popup\/popup.html",
"default_title": "NotebookLM Importer"
},
"icons": {
"16": "assets\/icon16.png",
"32": "assets\/icon32.png",
"48": "assets\/icon48.png",
"64": "assets\/icon64.png",
"128": "assets\/icon128.png"
},
"permissions": [
"storage",
"notifications"
],
"host_permissions": [
"<all_urls>"
],
"background": {
"service_worker": "background.js",
"type": "module"
},
"options_page": "options\/options.html",
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self';"
},
"minimum_chrome_version": "114"
}