Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Patreon Video Quality & Download",
"version": "1.0",
"description": "Force video quality and download Patreon videos",
"permissions": [],
"host_permissions": [
"https:\/\/www.patreon.com\/*",
"https:\/\/stream.mux.com\/*",
"https:\/\/*.fastly.mux.com\/*",
"https:\/\/*.mux.com\/*"
],
"content_scripts": [
{
"matches": [
"https:\/\/www.patreon.com\/*"
],
"js": [
"mux-shim.js",
"injected.js"
],
"run_at": "document_start",
"world": "MAIN"
},
{
"matches": [
"https:\/\/www.patreon.com\/*"
],
"js": [
"content.js"
],
"css": [
"styles.css"
],
"run_at": "document_start"
}
],
"background": {
"service_worker": "background.js"
},
"icons": {
"48": "icon.png"
}
}