Sin descripción

Yeung Alan af000796f7 Fix the forgot update problem hace 5 años
Video af000796f7 Fix the forgot update problem hace 5 años
README.md 303759127b Update 'README.md' hace 5 años

README.md

Please refer to the aCloud project read me

aCloudプロジェクトを参照してください

請參閱aCloud讀我檔案

请参阅aCloud读我档案

For those who want to add the movie information support, please add this code at the last row of <script>

	$.get( "https://api.themoviedb.org/3/search/movie?api_key=3067fe560558c32de0d0b8607553b16d&language=en-US&query=" + $("#videoName").text() +"&page=1&include_adult=false", function( data ) {
		$.get( "https://api.themoviedb.org/3/movie/" + data["results"][0]["id"] + "?api_key=3067fe560558c32de0d0b8607553b16d&language=en-US", function( info ) {
			console.log(data);
			$("#videoName").after("<p>Overview: " + info["overview"] + "</p>");
			$("#videoName").after("<p>Release: " + info["release_date"] + "</p>");
			$("#videoName").after("<p>Production Companies: " + info["production_companies"][0]["name"] + "</p>");
			
		});
	});