-
Notifications
You must be signed in to change notification settings - Fork 10
/
manifest.json
52 lines (45 loc) · 1.12 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
46
47
48
49
50
51
52
{
"manifest_version": 2,
"name" : "Textocry - copy text from images",
"version" : "0.0.4",
"description" : "Copy text from images with Optical Character Recognition",
"browser_action": {
"default_icon": {
"19" : "/images/icon19.png",
"38" : "/images/icon38.png"
},
"default_title": "Textocry - copy text from images"
},
"options_page": "/content/options.html",
"background" : {
"scripts": [
"dist/main.js"
],
"persistent": false
},
"web_accessible_resources": [
"/images/Jcrop.gif",
"/images/pixel.png"
],
"commands": {
"take-screenshot": {
"suggested_key": {
"default": "Alt+S"
},
"description": "Take Screenshot"
}
},
"icons": {
"16" : "images/icon16.png",
"48" : "images/icon48.png",
"128" : "images/icon128.png"
},
"homepage_url": "https://github.com/rinormaloku/textocry",
"permissions": [
"storage",
"activeTab",
"clipboardWrite",
"clipboardRead"
],
"content_security_policy":"script-src 'self' 'unsafe-eval' https://cdn.jsdelivr.net; object-src 'self'"
}