-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathmanifest.json
70 lines (70 loc) · 2.1 KB
/
manifest.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"manifest_version": 3,
"name": "descr.ai.be",
"version": "1.0.0",
"description": "Overview The Bookmark Context AI Chrome Extension revolutionizes the way users manage and utilize their bookmarks by adding intelligent context-aware features. This extension enhances the traditional bookmarking experience by providing users with dynamic summaries, keywords, and notes for each bookmark. When a user hovers over a bookmark, the extension displays this contextual information in a tooltip, making it easier to recall and utilize saved resources effectively.",
<<<<<<< HEAD
"permissions": ["activeTab", "scripting", "contextMenus", "storage"],
=======
<<<<<<< HEAD
"icons": {
"16": "./asset/icon16.png",
"48": "./asset/icon48.png",
"128": "./asset/icon128.png"
},
"action": {
"default_popup": "popup.html"
},
>>>>>>> dda64f0 (added context menu)
"background": {
"service_worker": "src/extenssion/context_menu/background.js"
<<<<<<< HEAD
},
"icons": { "16": "./asset/icon16.png",
"48": "./asset/icon48.png",
"128": "./asset/icon128.png" },
"action": {
"default_popup": "src/extenssion/popup.html"
=======
>>>>>>> 2f313ca (changed folder structure)
},
"content_scripts": [
{
"matches": ["<all_urls>"],
<<<<<<< HEAD
"js": ["src/extenssion/context_menu/context.js"]
=======
<<<<<<< HEAD
"js": ["content-script.js"]
=======
"js": ["src/extenssion/context_menu/context.js"]
>>>>>>> 8a503ad (changed folder structure)
>>>>>>> 2f313ca (changed folder structure)
}
],
"web_accessible_resources": [
{
"resources": ["sidebar.html", "sidebar-style.css", "themes.js"],
"matches": ["<all_urls>"]
}
]
}
=======
"permissions": ["contextMenus", "storage"],
"background": {
"service_worker": "background.js"
},
"icons": { "16": "./asset/icon16.png",
"48": "./asset/icon48.png",
"128": "./asset/icon128.png" },
"action": {
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["content.js"]
}
]
}
>>>>>>> cd767ff (added context menu)