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
|
{
"manifest_version": 2,
"name": "CryptoScript",
"version": "1.0",
"description": "A basic POC for GPG signed JavaScript with key pinning.",
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": [
"dist/content.js"
],
"all_frames": true,
"run_at": "document_start"
}
],
"browser_action": {
"browser_style": true,
"default_title": "CryptoScript",
"default_popup": "src/popup/index.html"
},
"permissions": [
"<all_urls>",
"https://keybase.io/*",
"storage",
"activeTab"
]
}
|