forked from sanlinnaing/MUA-Web-Unicode-Converter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
39 lines (35 loc) · 860 Bytes
/
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
{
"manifest_version": 2,
"name": "MUA Web Unicode Converter",
"description": "This extension will check web content and convert to Unicode encoded text if they are Zawgyi.",
"icons": {
"128": "icon128.png",
"48": "icon48.png"
},
"version": "1.17",
"background" : {
"scripts" : ["background.js"]
},
"options_page": "options.html",
"browser_action": {
"default_icon": {
"19": "icon19.png",
"38": "icon38.png"
},
"default_popup": "popup.html",
"default_title": "Click here!"
},
"content_scripts": [ {
"css": [ "zawgyi.css" ],
"js": [ "parabaik.js", "converter.js" ],
"matches": [ "*://*/*" ],
"run_at": "document_idle"
} ],
"web_accessible_resources": [
"YoeYar-One.ttf",
"pyidaungsu-1-3.ttf"
],
"permissions": [
"activeTab", "storage"
]
}