Skip to content

Commit 94c0f86

Browse files
Add manifest file
1 parent fe20f89 commit 94c0f86

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

manifest.json

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
{
2+
"manifest_version": 3,
3+
"name": "Summarize Me",
4+
"version": "1.0",
5+
"description": "Summarize web pages and highlighted text using Ollama API.",
6+
"permissions": [
7+
"activeTab",
8+
"scripting",
9+
"tabs"
10+
],
11+
"background": {
12+
"service_worker": "background.js"
13+
},
14+
"content_scripts": [
15+
{
16+
"matches": ["<all_urls>"],
17+
"js": ["content.js"]
18+
}
19+
],
20+
"action": {
21+
"default_popup": "popup.html",
22+
"default_icon": "icons/icon.png"
23+
},
24+
"host_permissions": [
25+
"http://localhost:11434/*"
26+
],
27+
"content_security_policy": {
28+
"extension_pages": "script-src 'self'; object-src 'self';"
29+
}
30+
}

0 commit comments

Comments
 (0)