We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fe20f89 commit 94c0f86Copy full SHA for 94c0f86
manifest.json
@@ -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