-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
45 lines (45 loc) · 1.29 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": "VirastYaar",
"description": " VirastYaar is a semi-intelligent editing assistant for Persian texts. that is a add-in for Web browers, that performs Persian spell checking(soon), character standardization, Pinglish transliteration, punctuation correction and calendar conversion and ....",
"version": "0.0.1",
"icons": {
"64": "icons/icon.png",
"96": "icons/[email protected]"
},
"background": {
"scripts": [
"scripts/tools/browser-polyfill.js",
"scripts/backgrounds/main.js"
]
},
"content_scripts": [{
"all_frames": true,
"matches": [
"<all_urls>"
],
"js": [
"scripts/tools/browser-polyfill.js",
"scripts/tools/Virastyaar.js",
"scripts/contents/main.js"
],
"run_at": "document_end"
}],
"browser_action": {
"browser_style": true,
"default_icon": {
"64": "icons/icon.png",
"96": "icons/[email protected]"
},
"default_popup": "browserAction/index.html",
"default_title": "VirastYaar"
},
"options_ui": {
"page": "options/index.html"
},
"permissions": [
"activeTab",
"contextMenus",
"*://*/*"
]
}