mirror of
https://github.com/tcsenpai/spacellama.git
synced 2025-07-28 13:41:38 +00:00
38 lines
859 B
JSON
38 lines
859 B
JSON
{
|
|
"manifest_version": 2,
|
|
"name": "SpaceLLama",
|
|
"version": "1.0",
|
|
"description": "Summarize web pages using OLLAMA",
|
|
"permissions": [
|
|
"activeTab",
|
|
"storage",
|
|
"<all_urls>",
|
|
"tabs"
|
|
],
|
|
"browser_action": {
|
|
"default_title": "SpaceLLama",
|
|
"default_icon": "icon.png"
|
|
},
|
|
"sidebar_action": {
|
|
"default_title": "SpaceLLama",
|
|
"default_panel": "sidebar/sidebar.html",
|
|
"default_icon": "icon.png"
|
|
},
|
|
"background": {
|
|
"scripts": ["background.js"],
|
|
"persistent": false
|
|
},
|
|
"content_scripts": [
|
|
{
|
|
"matches": ["<all_urls>"],
|
|
"js": ["content_scripts/content.js"]
|
|
}
|
|
],
|
|
"options_ui": {
|
|
"page": "options/options.html",
|
|
"open_in_tab": true
|
|
},
|
|
"web_accessible_resources": [
|
|
"sidebar/marked.min.js"
|
|
]
|
|
} |