-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathmanifest.json
40 lines (40 loc) · 861 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
{
"manifest_version": 2,
"name": "Text Rewriter",
"description": "Replace specified phrases on a page",
"author": "Peter Elmers",
"version": "1.8.1",
"options_ui": {
"page": "data/prefs.html"
},
"browser_action": {
"default_icon": "data/icon.png"
},
"content_scripts": [
{
"matches": [
"http://*/*",
"https://*/*"
],
"js": [
"data/text-rewriter.js"
],
"all_frames": false,
"run_at": "document_idle"
}
],
"permissions": [
"storage",
"tabs"
],
"background": {
"scripts": [
"lib/main.js"
],
"persistent": false
},
"icons": {
"48": "data/icon.png",
"64": "data/icon64.png"
}
}