Skip to main content

How To Update YouTube Title According To views and Likes on it

 How To Update YouTube Title According To views and Likes on it

This Video Has x likes and y views - https://www.youtube.com/watch?v=4LCV2_Dz7j8


GitHub ->

Method 1

Steps :- 

    1. Go Here To Google Scripts . 

    2. Create a New Project .

How To Update YouTube Title According To views and Likes on it - 1.png

    3.  Go To Github Link :- https://github.com/SH20RAJ/YouTubeTitleUpdate/blob/main/Code.gs and             Copy Whole Code For Code.gs Embed .

How To Update YouTube Title According To views and Likes on it - 2.png


    OR Here is The Code.gs Embed - You Can Also Copy From Here ...

    

    4. Now , Delete All Code That are Present there Previously and Paste The New Code There ...

Now , Delete All Code That are Present there Previously and Paste The New Code There ...


    5. Now , Click on + sign on Services and Add YouTube V3 Data API .

Now , Click on + sign on Services and Add YouTube V3 Data API .



Now , Click on + sign on Services and Add YouTube V3 Data API .


    6. Rename Project and Replace << Video ID >> With Your  Own Video ID .

        // If https://www.youtube.com/watch?v=4LCV2_Dz7j8 Then 4LCV2_Dz7j8 is Your Video ID

    7. Now , Click on Run -> Verify Credentials of Same Gmail Acccount by Clicking on Advance -> Go         To ( Project name .) 



    8. It's Done . 

        Now You Will See this Massage . in Execution Log .



Now , What For Automation ...


        9. Go To Triggers . 

            -> Add Trigger .



Go To Triggers ...


    
            -> Add a Trigger .


 Add a Trigger .


        -> Select Timer ( Recommendation Minutes Timer ) ...

Select Timer ( Recommendation Minutes Timer )


            -> Click on Save .

Click on Save ... It's All Done ...

It's All Set Now , But The Code Run only Until You Will not exceed the free api quota limit .


Sample Video :- https://www.youtube.com/watch?v=4LCV2_Dz7j8



]

Here Code.gs Whole Code .



Key Words :- 

youtube api,Autoupdating video title like Tom Scott's,YouTube Videos Title Automatic Update,youtube video title automatic update,display views likes comment in youtube video title,automatic update your video title,title automatic update,youtube data api v3,this video has n views,show views on title,automatic display views and likes in video title,real time views in title,title update in real time

Comments

Popular posts from this blog

How to Get Free Unlimited Bandwidth and Storage Using jsDelivr and GitHub

How to Get Free Unlimited Bandwidth and Storage Using jsDelivr and GitHub Are you tired of paying for expensive content delivery networks (CDNs) and storage solutions for your web projects? Look no further! In this guide, we'll show you how to leverage jsDelivr and GitHub to get free unlimited bandwidth and storage. Whether you're a seasoned developer or just getting started, this solution will save you money and improve the performance of your web projects. What is jsDelivr? jsDelivr is a free, fast, and reliable CDN for open-source files. It provides a convenient way to serve your static assets (like JavaScript, CSS, images, and more) with the benefits of a global CDN, including faster load times and unlimited bandwidth. What is GitHub? GitHub is a popular platform for version control and collaboration. It allows you to host your code repositories and manage your projects with ease. By combining GitHub with jsD...

Best VS Code extensions for developers in 2024

Here are some of the best VS Code extensions for developers in 2024, including a range of productivity tools, debuggers, and visual enhancements to streamline your coding workflow. Additionally, you'll find some popular themes to customize your editor's appearance. Top VS Code Extensions for Developers in 2024 Shade Theme by SH20RAJ Enhance your code readability with this well-designed theme, perfect for long coding sessions. Shade Theme Prettier A widely used code formatter that ensures your code is styled consistently across your projects. Prettier GitLens Provides rich visualizations and insights into your Git repository, helping you understand code changes and history. GitLens Auto Rename Tag Automatically renames paired HTML/XML tags, reducing errors and saving time. Auto Rename Tag Bracket Pair Colorizer Colors matching brackets to improve code readability, especially useful for complex nested structures. Bracket Pair Colorizer CSS Peek...

Top 50 Useful Regex Patterns

Title: Mastering Regular Expressions in JavaScript: Top 50 Useful Regex Patterns Introduction: Regular expressions (regex) are a powerful tool for pattern matching and text manipulation in JavaScript. Whether you're validating user input, extracting data from strings, or replacing text, regex can streamline your coding tasks. In this article, we'll explore 50 useful regex patterns that every JavaScript developer should know. These regex patterns cover a wide range of common scenarios, from validating email addresses to parsing URLs and beyond. 1. Validating Email Addresses: const emailRegex = /^[ \w -]+( \. [ \w -]+)*@([ \w -]+ \. )+[a-zA-Z]{2,7}$/; 2. Validating URLs: const urlRegex = /^(https?: \/ \/ )?([ \d a-z.-]+) \. ([a-z.]{2,6})([/ \w .-]*)* \/ ?$/; 3. Validating Dates in YYYY-MM-DD Format: const dateRegex = /^ \ d {4} - \ d {2} - \ d {2} $/; 4. Validating Phone Numbers (US Format): const phoneRegex = /^ \ ( ?( \ d {3} ) \ ) ?[- ]?( \ d {3} )[- ]?( \ d {4} )...

Random Posts