Last active
March 10, 2024 22:04
-
-
Save nikivdev/d7d179271bc2f63f02f6b24b29c307bb to your computer and use it in GitHub Desktop.
Revisions
-
nikivdev revised this gist
Jun 2, 2022 . 1 changed file with 2 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -19,6 +19,8 @@ On this page: https://www.youtube.com/feed/channels Script gotten from [Telik](https://github.com/agentcooper/Telik) app. ### Channels - [1C Entertainment](https://www.youtube.com/user/1CComp) - [1k](https://www.youtube.com/channel/UCu6A4xmskSOY_wPVOk6I3AA) - [2Do for iOS, Mac and Android](https://www.youtube.com/user/The2DoApp) -
nikivdev revised this gist
Jun 2, 2022 . 1 changed file with 3 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,4 +1,6 @@ ## Accounts I follow on YouTube Got it from running below script: ```javascript let markdown = Array.from(document.querySelectorAll("ytd-channel-renderer")) -
nikivdev revised this gist
Jun 2, 2022 . 1 changed file with 18 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,4 +1,21 @@ Accounts I follow on YouTube. Got it from running below script: ```javascript let markdown = Array.from(document.querySelectorAll("ytd-channel-renderer")) .map((item) => ({ title: item.querySelector("#text-container").textContent.trim(), url: item.querySelector("#main-link").href, })) .map(({ title, url }) => `- [${title}](${url})`) .join(String.fromCharCode(10)); document.write("Your clipboard now contains the list of your YouTube subscriptions."); copy(markdown); ``` On this page: https://www.youtube.com/feed/channels Script gotten from [Telik](https://github.com/agentcooper/Telik) app. - [1C Entertainment](https://www.youtube.com/user/1CComp) - [1k](https://www.youtube.com/channel/UCu6A4xmskSOY_wPVOk6I3AA) -
nikivdev renamed this gist
Jun 2, 2022 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
nikivdev created this gist
Jun 2, 2022 .There are no files selected for viewing