-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmanifest.json
More file actions
34 lines (32 loc) · 774 Bytes
/
Copy pathmanifest.json
File metadata and controls
34 lines (32 loc) · 774 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
{
"name": "YouTube Auto Like",
"version": "1.0.0",
"manifest_version": 3,
"description": "Automatically click the like button when accessing a video on YouTube.",
"author": "https://github.com/melchisedech333",
"icons": {
"16": "icons/icon16.png",
"19": "icons/icon19.png",
"32": "icons/icon32.png",
"38": "icons/icon38.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"content_scripts": [
{
"matches": [
"*://*/*"
],
"js": [
"background.js"
]
}
],
"permissions": [
"tabs",
"activeTab"
],
"host_permissions": [
"http://*.youtube.com/"
]
}