By contarc
—
Last update
Aug 18, 2007
—
Installed
189 times.
// Netflix Secure
// version 0.1 BETA
// 2007-08-03
// Copyright (c) 2006, WK;
// Released under the GPL license
// http://www.gnu.org/copyleft/gpl.html
//
// --------------------------------------------------------------------
//
// This is a Greasemonkey user script.
//
// To install, you need Greasemonkey: http://greasemonkey.mozdev.org/
// Then restart Firefox and revisit this script.
// Under Tools, there will be a new menu item to "Install User Script".
// Accept the default configuration and install.
//
// To uninstall, go to Tools/Manage User Scripts,
// select "Netflix Secure", and click Uninstall.
//
//
// --------------------------------------------------------------------
//
// ==UserScript==
// @name Netflix Secure
// @description Forces Netflix to use a secure connection
// @include http://www.netflix.com/*
// @exclude http://www.netflix.com/Queue*
// ==/UserScript==
// location.href = location.href.replace(/^http:/, 'https:');
//