YouTube API to fetch all videos on a channel

You need to look at the YouTube Data API. You will find there documentation about how the API can be accessed. You can also find client libraries. You could also make the requests yourself. Here is an example URL that retrieves the latest videos from a channel: https://www.googleapis.com/youtube/v3/search?key={your_key_here}&channelId={channel_id_here}&part=snippet,id&order=date&maxResults=20 After that you will receive a JSON … Read more

YouTube iframe API: how do I control an iframe player that’s already in the HTML?

Fiddle Links: Source code – Preview – Small version Update: This small function will only execute code in a single direction. If you want full support (eg event listeners / getters), have a look at Listening for Youtube Event in jQuery As a result of a deep code analysis, I’ve created a function: function callPlayer … Read more

Use a content script to access the page context variables and functions

Underlying cause: Content scripts are executed in an “isolated world” environment. Solution: Inject the code into the page using DOM – that code will be able to access functions/variables of the page context (“main world”) or expose functions/variables to the page context (in your case it’s the state() method). Note in case communication with the … Read more