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": "YouTube Music Playlist Recovery",
"version": "1.0",
"description": "CSV \ud30c\uc77c\uc744 \uc5c5\ub85c\ub4dc\ud558\uc5ec YouTube Music\uc5d0\uc11c \uc790\ub3d9\uc73c\ub85c \uc88b\uc544\uc694\ub97c \ub204\ub974\ub294 \ud655\uc7a5\ud504\ub85c\uadf8\ub7a8",
"permissions": [
"activeTab",
"storage",
"scripting"
],
"host_permissions": [
"https:\/\/music.youtube.com\/*"
],
"background": {
"service_worker": "background.js"
},
"author": "x_b_ro",
"action": {
"default_popup": "popup.html",
"default_title": "YouTube Music Recovery",
"default_area": {
"width": 450,
"height": 650
}
},
"content_scripts": [
{
"matches": [
"https:\/\/music.youtube.com\/*"
],
"js": [
"content.js"
],
"run_at": "document_idle"
}
],
"web_accessible_resources": [
{
"resources": [
"style.css"
],
"matches": [
"https:\/\/music.youtube.com\/*"
]
}
],
"icons": {
"16": "icons\/16.png",
"24": "icons\/24.png",
"32": "icons\/32.png",
"48": "icons\/48.png",
"64": "icons\/64.png"
}
}