Initial commit

This commit is contained in:
2026-03-14 21:21:53 +01:00
commit 100e2dacee
14 changed files with 1721 additions and 0 deletions

38
manifest.json Normal file
View File

@@ -0,0 +1,38 @@
{
"manifest_version": 3,
"name": "Memos Clipper",
"version": "1.0.0",
"description": "Clip web pages or selections as Markdown to your usememos instance",
"permissions": [
"activeTab",
"scripting",
"storage"
],
"host_permissions": [
"<all_urls>"
],
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
}
},
"icons": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"background": {
"service_worker": "background.js"
},
"options_page": "settings.html",
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["content.js"],
"run_at": "document_idle"
}
]
}