-
Notifications
You must be signed in to change notification settings - Fork 5
/
manifest.json
35 lines (35 loc) · 1.11 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
{
"name": "Seudev's Video Speed Controller",
"version": "2.1.2",
"version_name": "2.1.2",
"description": "A simple and customizable Google Chrome Extension for control the video speed!",
"homepage_url": "https://github.com/seudev/chrome-video-speed-controller",
"author": "Thomás Sousa Silva <thomassousa.dev>",
"web_accessible_resources": [
"img/seudev-negative-icon-64px-61px.png"
],
"icons": {
"16": "img/video-speed-controller-16px.png",
"24": "img/video-speed-controller-24px.png",
"32": "img/video-speed-controller-32px.png",
"48": "img/video-speed-controller-48px.png",
"64": "img/video-speed-controller-64px.png",
"128": "img/video-speed-controller-128px.png",
"256": "img/video-speed-controller-256px.png"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"all_frames": true,
"css": [
"css/main.css"
],
"js": [
"js/main.js"
]
}
],
"manifest_version": 2
}