-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathmanifest.json
More file actions
38 lines (38 loc) · 1.01 KB
/
manifest.json
File metadata and controls
38 lines (38 loc) · 1.01 KB
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
{
"name": "LinkBot",
"version": "1.0.8",
"manifest_version": 2,
"description": "Finds links and emails in text and makes them clickable.",
"icons": {
"16": "img/linkbot-round-16.png",
"32": "img/linkbot-round-32.png",
"48": "img/linkbot-round-48.png",
"128": "img/linkbot-round-128.png"
},
"permissions": [
"<all_urls>",
"storage"
],
"browser_action": {
"default_title": "LinkBot",
"default_popup": "browser_action/browser_action.html",
"default_icon": {
"19": "img/linkbot-round-19.png",
"38": "img/linkbot-round-38.png"
}
},
"content_scripts": [{
"js": [
"lib/jquery-3.1.0.slim.min.js",
"options/default_options.js",
"content_scripts/regex.js",
"content_scripts/main.js"
],
"all_frames": true,
"matches": ["<all_urls>"]
}],
"options_ui": {
"page": "options/options.html",
"chrome_style": true
}
}