forked from DoctorLai/CoinTools
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
45 lines (45 loc) · 1.08 KB
/
manifest.json
File metadata and controls
45 lines (45 loc) · 1.08 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
39
40
41
42
43
44
45
{
"manifest_version": 2,
"name": "Coin Tools",
"short_name": "cointools",
"default_locale": "en",
"version": "0.0.12",
"browser_action": {
"default_icon": "icon.png",
"default_title": "Coin Tools",
"default_popup": "main.html"
},
"author": "justyy<dr.zhihua.lai@gmail.com>",
"icons": {
"16": "images/icon-16.png",
"32": "images/icon-32.png",
"48": "images/icon-48.png",
"128": "images/icon-128.png"
},
"update_url":"http://clients2.google.com/service/update2/crx",
"description": "A Chrome Extension that has a few useful tools and graphs for Cryptocurrency",
"web_accessible_resources": [
"js/*",
"lang/*",
"images/*",
"css/*",
"bs/*"
],
"background": {
"scripts": ["js/background.js"]
},
"content_scripts": [{
"matches": ["<all_urls>"],
"js":[
"js/jquery-3.2.1.min.js",
"js/content.js"
],
"run_at":"document_start"
}],
"permissions": [
"activeTab",
"storage",
"tabs",
"<all_urls>"
]
}