forked from upes-open/OSoC-24-descr.ai.be
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
28 lines (28 loc) · 1.17 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
{
"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.",
"permissions": ["activeTab", "scripting", "contextMenus", "storage"],
"background": {
"service_worker": "src/extenssion/context_menu/background.js"
},
"icons": { "16": "./asset/icon16.png",
"48": "./asset/icon48.png",
"128": "./asset/icon128.png" },
"action": {
"default_popup": "src/extenssion/popup.html"
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["src/extenssion/context_menu/context.js"]
}
],
"web_accessible_resources": [
{
"resources": ["sidebar.html", "sidebar-style.css", "themes.js"],
"matches": ["<all_urls>"]
}
]
}