-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifestv2.dev.template
More file actions
33 lines (33 loc) · 926 Bytes
/
Copy pathmanifestv2.dev.template
File metadata and controls
33 lines (33 loc) · 926 Bytes
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
{
"manifest_version": 2,
"name": "My Product Hunt - DEVELOPMENT BUILD",
"short_name": "My PH",
"description": "THIS EXTENSION IS FOR BETA TESTING",
"version": "BUILD_NUMBER",
"homepage_url": "https://github.com/uretgec/my-product-hunt",
"permissions": [
"webNavigation"
],
"icons": {
"16": "icons/16.png",
"32": "icons/32.png",
"128": "icons/128.png"
},
"author": "Uretgec",
"content_scripts": [
{
"matches": ["https://www.producthunt.com/*"],
"css": ["myStyles.css","assets/darkmode.css"],
"run_at": "document_end"
},
{
"matches": ["https://www.producthunt.com/*"],
"js": ["lib/darkmode.js","contentScript.js"],
"run_at": "document_start"
}
],
"background": {
"scripts": ["background.js"],
"persistent": true
}
}