feat(insights): fix DBSCAN, Persian embeddings crash, D3 physics layouts, and D3 node not found runtime error
This commit is contained in:
31
memento-note/extension/manifest.json
Normal file
31
memento-note/extension/manifest.json
Normal file
@@ -0,0 +1,31 @@
|
||||
{
|
||||
"manifest_version": 3,
|
||||
"name": "Memento Web Clipper",
|
||||
"version": "0.3.0",
|
||||
"description": "Enregistrez des pages et des sélections dans Momento avec résumé IA.",
|
||||
"permissions": ["activeTab", "scripting", "storage", "sidePanel", "tabs"],
|
||||
"host_permissions": [
|
||||
"http://localhost:3000/*",
|
||||
"http://127.0.0.1:3000/*",
|
||||
"https://memento-note.com/*",
|
||||
"http://*/*",
|
||||
"https://*/*"
|
||||
],
|
||||
"background": {
|
||||
"service_worker": "background.js"
|
||||
},
|
||||
"side_panel": {
|
||||
"default_path": "sidepanel.html"
|
||||
},
|
||||
"content_scripts": [
|
||||
{
|
||||
"matches": ["http://*/*", "https://*/*"],
|
||||
"js": ["content.js"],
|
||||
"run_at": "document_idle",
|
||||
"all_frames": false
|
||||
}
|
||||
],
|
||||
"action": {
|
||||
"default_title": "Momento Web Clipper"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user