Data is synced from the Chrome Web Store. View the official store page for the most current information.
Hand-picked for quality and usefulness
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Youtube Channels To CSV",
"short_name": "youtube-channels-to-csv",
"version": "0.0.2",
"author": "LimbusCode",
"description": "Export Youtube Channel Data to CSV from a list of channel links",
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"https:\/\/extensionpay.com\/*"
],
"js": [
"ExtPay.js"
],
"run_at": "document_start"
}
],
"action": {
"default_popup": "popup.html",
"default_title": "Youtube Channels To CSV",
"default_icon": {
"16": "assets\/img\/16.png",
"24": "assets\/img\/24.png",
"32": "assets\/img\/32.png",
"48": "assets\/img\/48.png",
"64": "assets\/img\/64.png",
"128": "assets\/img\/128.png"
}
},
"permissions": [
"storage",
"notifications"
],
"host_permissions": [
"https:\/\/www.youtube.com\/*",
"https:\/\/youtube.com\/*",
"https:\/\/youtube.com\/",
"https:\/\/socialblade.com\/*",
"https:\/\/vidiq.com\/*"
],
"icons": {
"16": "assets\/img\/16.png",
"24": "assets\/img\/24.png",
"32": "assets\/img\/32.png",
"48": "assets\/img\/48.png",
"64": "assets\/img\/64.png",
"128": "assets\/img\/128.png"
}
}