Youtube Channels To CSV

Export Youtube Channel Data to CSV from a list of channel links

Youtube Channels To CSVとは何ですか?

Youtube Channels To CSVはhttps://limbuscode.comによって開発されたChromeの拡張機能で、その主な機能は「Export Youtube Channel Data to CSV from a list of channel links」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot
screenshot
screenshot

Youtube Channels To CSV拡張機能のCRXファイルをダウンロード

Youtube Channels To CSV拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Export YouTube Channel Data from Channel URL list to CSV File.

How it works:
- First, install this extension.
- Next, click on the red icon next to your URL bar. Don't see the icon? Click on the puzzle piece, and then click on the pin to move it to your URL bar.
- Paste the list of channel URLs you'd like to extract the data.
- Click on export and wait for the end of the process, then finally download the generated CSV File.

** You could generate a list of channel URLs by using this extension: https://bit.ly/subscriptions-importer-for-yt

This is what the exported output will look like:
Name,Url,Subscribers,
Channel A,https://youtube.com/channel/ADFa0fsdaFAsd0fawW, 1K
Channel B,https://youtube.com/channel/ADFa0fsdaFAsd0fawW, 1K
Channel C,https://youtube.com/channel/ADFa0fsdaFAsd0fawW, 1K
...

Not working? Comment or email me with the following template so that I can fix your issue:

OS and OS Version:
Do you have YouTube Premium?
Chrome Version:
OS language:
YouTube language:
Time in UTC that you tried the exporter (you can get your time in UTC via https://www.timeanddate.com/worldclock/timezone/utc):
What actually happened:
What you expected to happen:

Changelog:

v.0.0.1.3:

- add support to "youtube.com/@username" kind of URL

v.0.0.1.2:

- Remember which columns were used in the last export
- Add Avatar Image data column

v.0.0.1:

- First Version                    

拡張機能の基本情報

名前 Youtube Channels To CSV Youtube Channels To CSV
ID leleihajebccdgcpoinijlfccdkajioa
公式URL https://chromewebstore.google.com/detail/youtube-channels-to-csv/leleihajebccdgcpoinijlfccdkajioa
説明 Export Youtube Channel Data to CSV from a list of channel links
ファイルサイズ 704 KB
インストール数 449
現在のバージョン 0.0.1.3
最終更新日 2024-01-07
公開日 2022-09-14
評価 3.00/5 合計 2 レビュー
開発者 https://limbuscode.com
Eメール [email protected]
支払い方法 in_app
拡張機能のウェブサイト https://www.limbuscode.com/youtube-channels-to-csv
ヘルプページのURL https://docs.google.com/forms/d/e/1FAIpQLSd_7IU5Rie2lqsxNA7TunGaSlgbmZOcORmtzrtR5fsiju07JQ/viewform?usp=pp_url&entry.937029896=YouTube+Channels+to+CSV
対応言語 en-US
manifest.json
{
    "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.1.3",
    "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:\/\/www.noxinfluencer.com\/*",
        "https:\/\/www.statsheep.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"
    }
}