-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifestv2.template
34 lines (34 loc) · 942 Bytes
/
manifestv2.template
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
{
"manifest_version": 2,
"name": "My Currency Converter",
"short_name": "MyCC",
"description": "Just select the currency you want to convert",
"version": "BUILD_NUMBER",
"homepage_url": "https://github.com/uretgec/my-currency-converter",
"permissions": [
"https://www.tcmb.gov.tr/kurlar/today.xml",
"storage"
],
"icons": {
"16": "icons/16.png",
"32": "icons/32.png",
"128": "icons/128.png"
},
"author": "Uretgec",
"content_scripts": [
{
"matches": ["http://*/*", "https://*/*"],
"css": ["myStyles.css"],
"run_at": "document_idle"
},
{
"matches": ["http://*/*", "https://*/*"],
"js": ["lib/ccmanager.js","contentScript.js"],
"run_at": "document_start"
}
],
"background": {
"scripts": ["background.js"],
"persistent": true
}
}