-
Notifications
You must be signed in to change notification settings - Fork 4
/
manifest.json
54 lines (54 loc) · 1.38 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
{
"manifest_version": 2,
"name": "AliExpress Invoice Generator",
"version": "3.1.2",
"description": "Generates PDF invoices from AliExpress order detail websites",
"icons": {
"48": "icons/icon-48.png",
"96": "icons/icon-96.png",
"128": "icons/icon-128.png"
},
"background": {
"scripts": ["browser-polyfill.js", "background.js"]
},
"content_scripts": [
{
"matches": ["*://trade.aliexpress.com/order_detail*"],
"js": ["browser-polyfill.js", "pdfkit.standalone.js", "content.js"]
}
],
"page_action": {
"browser_style": true,
"default_icon": {
"19": "icons/icon-19.png",
"38": "icons/icon-38.png"
},
"default_title": "Generate PDF Invoice",
"show_matches": ["*://trade.aliexpress.com/order_detail*"]
},
"options_ui": {
"page": "views/options.html",
"browser_style": true
},
"web_accessible_resources": [
"aliexpress.png",
"fonts/DroidSansFallback.ttf",
"fonts/DroidSans-Bold.ttf",
"icons/icon-128.png",
"screenshots/onboarding-1.png",
"screenshots/onboarding-1-chrome.png",
"screenshots/onboarding-2.png",
"screenshots/onboarding-3.png",
"screenshots/onboarding-3-chrome.png"
],
"permissions": [
"storage",
"downloads"
],
"browser_specific_settings": {
"gecko": {
"id": "{b528e080-bcc1-4f58-89b8-da9a54df78b2}"
}
},
"default_locale": "en"
}