-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
53 lines (53 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
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
{
"manifest_version": 3,
"default_locale": "en",
"name": "Google Search Tweaker — tiled google search",
"version": "2.5.7",
"description": "__MSG_extensionDescription__",
"icons": {
"48": "icons/icon-new.png",
"96": "icons/icon-new.png"
},
"content_scripts": [
{
"js": [
"src/configs.js",
"src/functions.js",
"src/keyboard-handler.js",
"src/layout.js",
"src/tile.js",
"src/index.js"
],
"css": [
"src/index.css"
],
"run_at": "document_start",
"matches": [ "*://*/search?*q=*" ],
"include_globs": [
"*://www.google.*/search?*q=*"
],
"exclude_globs": [
"*://www.google.*/search?*&udm=*",
"*://www.google.*/search?*&tbm=*"
]
}
],
"action": {
"default_icon": "icons/icon-new.png",
"default_title": "Google Tweaker",
"default_popup": "popup/popup.html"
},
"options_ui": {
"page": "options/options.html",
"open_in_tab": false
},
"permissions": [
"storage"
],
"browser_specific_settings": {
"gecko": {
"id": "[email protected]",
"strict_min_version": "109.0"
}
}
}