-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
44 lines (44 loc) · 1008 Bytes
/
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
{
"name": "StatisText",
"version": "0.1.1",
"description": "Displays useful statistics about a selected piece of text.",
"manifest_version": 2,
"icons": {
"48": "logo_48.png",
"128": "logo_128.png"
},
"permissions": [
"tabs",
"<all_urls>"
],
"browser_action": {
"default_title": "Count Words",
"default_popup": "stats.html"
},
"background": {
"scripts": [
"hot-reload.js"
]
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"countWords.js"
],
"run_at": "document_start",
"all_frames": true
}
],
"commands": {
"_execute_browser_action": {
"suggested_key": {
"default": "Ctrl+Shift+Q",
"mac": "MacCtrl+Shift+Q"
},
"description": "Opens stats.html"
}
}
}