TILT -45° Prank

Funny prank to tilt websites -45°

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name		TILT -45° Prank
// @name:fr		INCLINAISON -45° Farce
// @namespace		VElMVCAtNDXCsCBQcmFuaw
// @description		Funny prank to tilt websites -45°
// @description:fr	Blague drôle pour incliner les sites Web de -45°
// @author		smed79
// @version		1.0
// @icon		https://i25.servimg.com/u/f25/11/94/21/24/tilt4510.png
// @twitterURL		https://github.com/smed79
// @run-at		document-start
// @include		http://*
// @include		https://*
// @grant		GM_addStyle
// @license		GPLv3
// ==/UserScript==

GM_addStyle ( "				\
  html {				\
  transform: rotate(-45deg);		\
  -webkit-transform: rotate(-45deg);	\
  -moz-transform: rotate(-45);	\
  -ms-transform: rotate(-45deg);	\
  -o-transform: rotate(-45deg);		\
       }				\
 " );