forked from madneal/export-to-markdown
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmanifest.json
55 lines (55 loc) · 1.47 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
53
54
55
{
"content_scripts":[
{
"matches":[
"*://github.com/xitu/gold-miner/new/master/article/2022*"
],
"js":[
"scripts/github.js"
]
},
{
"matches":[
"*://github.com/xitu/gold-miner/issues/new*"
],
"js":[
"scripts/newissue.js"
]
},
{
"matches":[
"*://github.com/xitu/gold-miner*"
],
"js":[
"scripts/wiki.js",
"scripts/delay.js"
]
}
],
"description":"This is utilized to export the story in Medium to a markdown format file.",
"short_name":"ExportToMarkdown",
"icons":{
"128":"icons/medium.png",
"64":"icons/medium-64.png",
"48":"icons/medium-48.png",
"16":"icons/medium-16.png"
},
"background":{
"scripts":[
"scripts/background.js"
]
},
"name":"Export to Markdown\uff08\u6398\u91d1\u7ffb\u8bd1\u8ba1\u5212\u7248\uff09",
"homepage_url":"https://github.com/sunui/export-to-markdown",
"version":"0.6.0",
"manifest_version":2,
"browser_action":{
"default_title":"Export to Markdown\uff08\u6398\u91d1\u7ffb\u8bd1\u8ba1\u5212\u7248\uff09",
"default_icon":"icons/medium.png",
"default_popup":"popup.html"
},
"permissions":[
"activeTab",
"https://*/*"
]
}