-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmanifest.json
83 lines (83 loc) · 2.15 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
{
"name": "Target Blank",
"description": "Makes links open in a new tab/window by default.",
"icons": {
"128": "icons/icon_disabled.png"
},
"version": "1.0.1",
"manifest_version": 2,
"permissions": [
"activeTab",
"storage",
"tabs"
],
"background": {
"scripts": ["constants.js", "enums.js", "utils.js", "background.js"],
"persistent": true
},
"browser_action": {
"default_title": "A Google Chrome extension for unifying link behavior across the web.",
"default_popup": "options.html"
},
"content_scripts": [
{
"matches": ["http://*/*", "https://*/*"],
"js": ["constants.js", "enums.js", "utils.js"],
"all_frames": true
},
{
"matches": ["http://*.google.com/*", "https://*.google.com/*", "http://google.com/*", "https://google.com/*"],
"js": ["strategies/google.js"],
"all_frames": true
},
{
"matches": ["http://*.yahoo.com/*", "https://*.yahoo.com/*", "http://yahoo.com/*", "https://yahoo.com/*"],
"js": ["strategies/yahoo.js"],
"all_frames": true
},
{
"matches": ["http://*.github.com/*", "https://*.github.com/*", "http://github.com/*", "https://github.com/*"],
"js": ["strategies/github.js"],
"all_frames": true
},
{
"matches": ["http://*.facebook.com/*", "https://*.facebook.com/*", "http://facebook.com/*", "https://facebook.com/*"],
"js": ["strategies/facebook.js"],
"all_frames": true
},
{
"matches": ["http://*/*", "https://*/*"],
"js": ["vendors/mutation-summary.js", "contentscript.js"],
"all_frames": true
}
],
"options_ui": {
"page": "options.html",
"chrome_style": true
},
"commands": {
"toggle-feature-foo": {
"suggested_key": {
"default": "Ctrl+Shift+Y",
"mac": "Command+Shift+Y",
"windows": "Alt+Shift+P"
},
"description": "Toggle feature foo"
},
"_execute_browser_action": {
"suggested_key": {
"windows": "Ctrl+Shift+Y",
"mac": "Command+Shift+Y",
"chromeos": "Ctrl+Shift+U",
"linux": "Ctrl+Shift+J"
}
},
"_execute_page_action": {
"suggested_key": {
"default": "Ctrl+Shift+E",
"windows": "Alt+Shift+P",
"mac": "Alt+Shift+P"
}
}
}
}