-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
32 lines (31 loc) · 1022 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
{
"manifest_version": 2,
"name": "Medium korea font",
"description": "change medium font-family for korean user",
"version": "2.1",
"background" : {
"scripts": ["background.js"],
"persistent": false
},
"content_scripts": [
{
"matches": ["http://medium.com/*", "https://medium.com/*"],
"css": ["korea_font_family.css", "fonts/nanumgothic.css", "fonts/jejumyeongjo.css", "fonts/notosanskr.css", "fonts/kopubbatang.css"],
"js": ["content.js"]
}
],
"browser_action": {
"default_icon": "icon.png",
"default_title": "Medium korea font"
},
"options_ui": {
"page": "options.html",
"chrome_style": true,
"open_in_tab": true
},
"web_accessible_resources":["fonts/*"],
"permissions": [ "declarativeContent", "fontSettings", "storage", "contextMenus", "activeTab" ],
"icons": { "16": "icon-16.png",
"48": "icon-48.png",
"128": "icon-128.png" }
}