-
Notifications
You must be signed in to change notification settings - Fork 84
/
manifest.json
45 lines (45 loc) · 1.46 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
{
"manifest_version": 2,
"name": "TronLink",
"version": "1.0.0",
"version_name": "1.0.0-beta",
"description": "An interactive chrome extension for signing, receiving and broadcasting Tron transactions",
"author": "https://github.com/TronWatch",
"icons": {
"128": "static/icon128.png"
},
"background": {
"scripts": [
"dist/backgroundScript.js"
],
"persistent": true
},
"content_scripts": [
{
"matches": [
"file://*/*",
"http://*/*",
"https://*/*"
],
"js": [
"dist/contentScript.js"
],
"run_at": "document_start",
"all_frames": false
}
],
"permissions": [
"storage",
"unlimitedStorage",
"clipboardWrite",
"activeTab"
],
"web_accessible_resources": [
"dist/pageHook.js"
],
"browser_action": {
"default_popup": "app/popup/build/index.html",
"default_title": "Tron Chrome"
},
"key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuwVUXHP6igeqchpCIAEAIr0kEPCi0UhbeV6h/GPFP930TNSwDBvrEz7IwUs54bo3Rw2/quG2lsO/00HB3rxSAV1Y7ri0twvaBHo10ah+bV+2qjIZ8uRVoGNmELPtUPPjX27TLhnigmSz10ScA9/+QcogmSXde8cY043CTc5GptjFmI0c2iN/OF3nttKg/+hk1Nk9TMQUgmGTPdc1mx3xJEhVrOCpaCaykTzzHHCl321JKXNQ7cKZlhfzcurcGu+nBUIV/JfWX3JfQtao753pE4e2cSjatLdgDM0Mz3T1Rp9HWxOGE66iyfxnryffrbTRlMl0TqFbMf1c6G2kaZVdLwIDAQAB"
}