first commit

This commit is contained in:
2024-02-16 22:50:11 +01:00
commit 5f7ba1d7f4
10 changed files with 123 additions and 0 deletions

27
manifest.json Normal file
View File

@@ -0,0 +1,27 @@
{
"manifest_version": 3,
"name": "Pipet redirector XD",
"version": "1.0",
"description": "Redirects from YouTube to Piped.video using the video's ID",
"permissions": ["tabs"],
"content_scripts": [{
"matches": ["https://www.youtube.com/watch*"],
"css": ["styles.css"],
"js": ["content.js"]
}],
"background": {
"service_worker": "background.js"
},
"action": {
"default_icon": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
}
},
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
}
}