-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
33 lines (33 loc) · 973 Bytes
/
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
{
"name": "Video Volume Sync and Ad Skip",
"short_name": "Video Volume Sync and Ad Skip",
"description": "A simple extension that synchronizes audio of all the video (Needed on facebook where all the videos are on 100% volume or mute) and Ad skipper specially made for youtube",
"manifest_version": 2,
"version": "0.1.0",
"author": "Savan Nahar",
"homepage_url": "https://github.com/savannahar68",
"permissions": ["storage"],
"content_scripts": [
{
"matches": ["*://*.youtube.com/*"],
"js": ["adskip.js"],
"run_at": "document_end",
"all_frames": true
},
{
"matches": ["*://*.facebook.com/*"],
"js": ["fbVolSync.js"],
"run_at": "document_end",
"all_frames": true
},
{
"matches": ["*://*.facebook.com/*", "*://*.facebookcorewwwi.onion/*"],
"css": ["content.css"],
"js": ["fbSkipAd.js"],
"run_at": "document_idle"
}
],
"icons": {
"128": "logo.png"
}
}