Download videos online from your browser with just one click!
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"manifest_version": 3,
"name": "__MSG_manifest_name__",
"short_name": "FetchV",
"version": "2.2.1",
"description": "__MSG_manifest_description__",
"icons": {
"16": "img/icon-16.png",
"48": "img/icon-48.png",
"128": "img/icon-128.png"
},
"background": {
"service_worker": "worker.js"
},
"action": {
"default_icon": {
"16": "img/icon-16.png",
"48": "img/icon-48.png",
"128": "img/icon-128.png"
},
"default_title": "__MSG_manifest_browser_action__",
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": [
"*://fetchv.net/downloader",
"*://fetchv.net/*/downloader"
],
"js": [
"libs/uri-helper.js",
"libs/mux.js",
"libs/m3u8-mixer.js",
"libs/jquery-3.5.1.min.js",
"js/downloader.js"
],
"run_at": "document_end"
},
{
"matches": [
"*://fetchv.net/recorder",
"*://fetchv.net/*/recorder"
],
"js": [
"libs/media-source-mixer.js",
"libs/jquery-3.5.1.min.js",
"js/recorder.js"
],
"run_at": "document_end"
},
{
"matches": [
"*://*/*"
],
"js": [
"libs/cache.js"
],
"run_at": "document_idle"
},
{
"matches": [
"*://fetchv.net/member",
"*://fetchv.net/*/member"
],
"js": [
"js/controller.js"
],
"run_at": "document_start"
},
{
"matches": [
"*://*/*"
],
"exclude_globs": [
"*//fetchv.net/*"
],
"js": [
"libs/jquery-3.5.1.min.js",
"js/content-script.js"
],
"run_at": "document_start"
}
],
"web_accessible_resources": [
{
"resources": [
"js/injected.js"
],
"matches": [
"*://*/*"
],
"use_dynamic_url": true
}
],
"host_permissions": [
"http://*/*",
"https://*/*"
],
"permissions": [
"tabs",
"webRequest",
"storage"
],
"homepage_url": "https://fetchv.net/",
"options_page": "./options.html",
"default_locale": "en",
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}