-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
36 lines (35 loc) · 908 Bytes
/
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
{
"name": "Chrome link search",
"short_name": "Link search",
"description": "Easily search your browser history, bookmark, tab in all windows and useful chrome options links",
"manifest_version": 3,
"version": "2.1",
"offline_enabled": true,
"background": {
"service_worker": "assets/background.js"
},
"action": {
"default_icon": "assets/icons/searchHistory128.png",
"default_popup": "index.html",
"default_title": "Chrome link search"
},
"permissions": [
"history",
"bookmarks",
"tabs",
"favicon"
],
"web_accessible_resources": [
{
"resources": ["_favicon/*"],
"matches": ["<all_urls>"],
"extension_ids": ["*"]
}
],
"icons": {
"16": "assets/icons/searchHistory16.png",
"32": "assets/icons/searchHistory32.png",
"48": "assets/icons/searchHistory48.png",
"128": "assets/icons/searchHistory128.png"
}
}