Files
my_wiki/raw/llm_wiki/extension/manifest.json
T

47 lines
1.0 KiB
JSON

{
"manifest_version": 3,
"name": "LLM Wiki Clipper",
"version": "0.1.0",
"description": "Clip web pages to your LLM Wiki knowledge base",
"permissions": ["activeTab", "scripting", "storage"],
"host_permissions": [
"http://127.0.0.1:19827/*",
"http://localhost:19827/*"
],
"optional_host_permissions": [
"http://*/*",
"https://*/*"
],
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
}
},
"background": {
"service_worker": "background.js"
},
"commands": {
"clip-current-page": {
"suggested_key": {
"default": "Alt+Shift+L",
"mac": "Command+Shift+L"
},
"description": "Clip the current page to LLM Wiki"
}
},
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"web_accessible_resources": [
{
"resources": ["Readability.js", "Turndown.js"],
"matches": ["<all_urls>"]
}
]
}