javascript 导出Netflix的“我的列表”,“观看历史记录”以及竖起/缩小或评级。 Netflix评级与脚本输出的屏幕截图:https://cl.ly/4e15

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了javascript 导出Netflix的“我的列表”,“观看历史记录”以及竖起/缩小或评级。 Netflix评级与脚本输出的屏幕截图:https://cl.ly/4e15相关的知识,希望对你有一定的参考价值。

// These instructions for exporting Netflix's My List, Watch History, and Ratings worked for each profile on August 4, 2019.

// 1) Go to https://www.netflix.com/browse/my-list and use https://addons.mozilla.org/firefox/addon/netflix-list-exporter/ to copy.

// 2) Go to https://help.netflix.com/en/node/101917 and follow instructions to download CSV of Watch History.

// 3) Use the snippet below in the browser's console at https://www.netflix.com/MoviesYouveSeen, then copy and paste to wherever you wish.
// Code was altered from https://www.coollector.com/netflix_import.html, but I haven't ever used their software.

// 4) Go to https://www.netflix.com/cancelplan and cancel (if that's why you're doing all this):
// "Restart your membership anytime. Your viewing preferences and account details will be saved for 10 months."

var result = '';
var $ = jQuery;
$( '.retableRow' ).each( function ( i, el ) {
	if ( $( el ).find( '.rated' ).hasClass( 'rated-up' ) ) {
		result += '[+] ';
	} else if ( $( el ).find( '.rated' ).hasClass( 'rated-down' ) ) {
		result += '[-] ';
	} else {
		result += '[' + $( el ).find( '.rating .personal.icon-star' ).length + '] ';
	}
	result += '\t' + $( el ).find( '.title' ).text() + '\t';
	result += 'https://www.netflix.com' + $( el ).find( '.title a' ).attr( 'href' ) + '\n';
} );
console.log( result );

以上是关于javascript 导出Netflix的“我的列表”,“观看历史记录”以及竖起/缩小或评级。 Netflix评级与脚本输出的屏幕截图:https://cl.ly/4e15的主要内容,如果未能解决你的问题,请参考以下文章

使用 Tampermonkey/javascript 控制 Netflix (HTML5) 播放

Netflix Web 性能案例研究

第1487期Netflix 的 Web 性能案例研究

如何在客户端与 Netflix Cadmium 视频播放器交互?

从 jQuery 数据表中的导出中排除列

使用html代码将mysql表导出到csv