-
Notifications
You must be signed in to change notification settings - Fork 2
/
manifest.json
81 lines (81 loc) · 1.89 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
71
72
73
74
75
76
77
78
79
80
81
{
"browser_specific_settings": {
"gecko": {
"id": "{c7ec5939-f508-4e04-8414-ff9a2512e17a}"
}
},
"manifest_version": 2,
"name": "Lookup In Popup",
"description": "Lookup selected texts in the popup on your preferred search engine, and open links in the popup",
"version": "0.0.2",
"permissions": [
"storage",
"<all_urls>",
"contextMenus"
],
"background": {
"scripts": [
"data/internal_libs/lip_utility.js",
"data/internal_libs/lip_pre_installed_search_engines_data.js",
"data/background/background.js"
],
"persistent": true
},
"browser_action": {
"default_icon": "data/icons/icon16.png",
"default_title": "Lookup In Popup",
"default_popup": "data/options/lip_from_toolbar/lip_from_toolbar.html"
},
"options_ui": {
"page": "data/options/options.html",
"open_in_tab": true
},
"icons": {
"16": "data/icons/icon16.png",
"24": "data/icons/icon24.png",
"32": "data/icons/icon32.png",
"48": "data/icons/icon48.png",
"64": "data/icons/icon64.png",
"128": "data/icons/icon128.png",
"256": "data/icons/icon256.png",
"512": "data/icons/icon512.png"
},
"web_accessible_resources": [],
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"run_at": "document_start",
"js": [
"data/internal_libs/lip_utility.js",
"data/inject/lip.js"
],
"css": [
"data/inject/lip.css"
],
"all_frames": true
},
{
"matches": [
"<all_urls>"
],
"run_at": "document_start",
"js": [
"data/inject/lip_popup_window.js"
],
"css": [
"data/inject/lip_popup_window.css"
],
"all_frames": false
}
],
"commands": {
"_execute_browser_action": {
"suggested_key": {
"default": "Alt+L"
},
"description": "Activate the extension"
}
}
}