-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
73 lines (67 loc) · 1.87 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
/* File: manifest.json
* -------------------
* A manifest file (like this one) is used to
* give Chrome information about your extension.
*
* You shouldn't need to change anything in this file
* unless you're doing extensions.
*
* For more details, check out the documentation:
* https://developer.chrome.com/extensions/manifest
*/
{
// Required
"manifest_version": 2,
"name": "Cal to Butt",
"version": "0.0.1",
// Recommended
"description": "Chrome Extension Hackpack @ TreeHacks 2016",
"icons": {
"16": "icons/TreeHacks-white-16.png",
"32": "icons/TreeHacks-white-32.png",
"48": "icons/TreeHacks-white-48.png",
"64": "icons/TreeHacks-white-64.png",
"96": "icons/TreeHacks-white-96.png",
"128": "icons/TreeHacks-white-128.png"
},
// Optional
"homepage_url": "https://www.treehacks.com/",
// Put any additional permissions your applications needs here.
// For a list of possibilities, see
// https://developer.chrome.com/extensions/declare_permissions
"permissions": [
"storage" // Allows access to chrome.storage API
],
/****************************************************************/
// You probably shouldn't change anything below this line,
// unless you *really* know what you're doing.
"background": {
"scripts": [
"src/bg/background.js"
],
"persistent": false // Event page
},
"options_ui": {
// Required.
"page": "src/options/options.html",
// Recommended.
"chrome_style": true
},
"browser_action": {
"default_icon": "icons/TreeHacks-white-19.png",
"default_title": "Cal to Butt",
"default_popup": "src/browser_action/browser_action.html"
},
"content_scripts": [
{
// Run the inject.js script on all HTTP(s) pages
"matches": [
"http://*/*",
"https://*/*"
],
"js": [
"src/inject/inject.js"
]
}
]
}