forked from emvaized/circle-mouse-gestures
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
executable file
·85 lines (85 loc) · 2.19 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
82
83
84
85
{
"manifest_version": 2,
"name": "Circle Mouse Gestures (pie menu)",
"version": "1.4.0",
"description": "__MSG_extensionDescription__",
"default_locale": "en",
"icons": {
"48": "icons/icon-monotone-48.png",
"96": "icons/icon-monotone-96.png",
"128": "icons/icon-monotone-128.png"
},
"background": {
"scripts": [
"src/functions/background.js"
],
"persistent": false
},
"web_accessible_resources": [
"icons/icon-monotone-48.png"
],
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"src/data/configs.js",
"src/data/variables.js",
"src/data/actions-list.js",
"src/data/icons.js",
"src/functions/actions.js",
"src/functions/check-action-availability.js",
"src/functions/check-action-state.js",
"src/functions/clipboard-functions.js",
"src/functions/color-functions.js",
"src/functions/text-selection-functions.js",
"src/functions/image-functions.js",
"src/functions/scroll-functions.js",
"src/functions/text-format-functions.js",
"src/utils/image-viewer.js",
"src/utils/link-preview.js",
"src/utils/page-shrinker.js",
"src/utils/tab-switcher.js",
"src/ui/circle/circle.js",
"src/ui/circle/canvas-drawer.js",
"src/ui/circle/bg-dimmer.js",
"src/ui/components/helper-tooltip.js",
"src/ui/components/hint-tooltip.js",
"src/ui/components/rocker-icon.js",
"src/index.js"
],
"css": [
"src/index.css"
],
"run_at": "document_start"
}
],
"options_ui": {
"page": "options/options.html",
"browser_style": true,
"chrome_style": true,
"open_in_tab": true
},
"browser_action": {
"default_icon": "icons/icon-monotone-48.png",
"default_title": "Circle Mouse Gestures",
"default_popup": "popup/popup.html"
},
"permissions": [
"<all_urls>",
"tabs",
"storage",
"sessions",
"bookmarks",
"clipboardWrite",
"clipboardRead",
"downloads",
"notifications"
],
"browser_specific_settings": {
"gecko": {
"id": "[email protected]"
}
}
}