Website SpeedHack by poule_trempee

SpeedHack/FastForward open/close GUI with [Inser]

作者
poule trempee
今日安裝
0
安裝總數
2
評價
1 0 0
版本
1.3.7
建立日期
2025-11-02
更新日期
2025-11-02
尺寸
7.1 KB
授權條款
Copyright (c) 2025 poule_trempee - All Rights Reserved
腳本執行於
所有網站

Website SpeedHack by poule_trempee

Website SpeedHack by poule_trempee

Control playback speed on any website with a clean Tampermonkey GUI — toggle using [Insert].



Overview


Website SpeedHack is a Tampermonkey userscript that lets you control the overall speed of most websites (some browsers may restrict extremely high speeds). It can even accelerate YouTube ads.

Features

  • Open/close GUI with the Insert key.
  • Numeric input and slider to set speed (default 1.0×).
  • Enable/Disable toggle (default disabled).
  • Automatic detection of new elements on the page.
  • Lightweight and responsive interface.
  • Custom API available under window.siteSpeedController.

Installation

  1. Install the Tampermonkey extension on your browser.
  2. Create a new userscript.
  3. Paste the script header and code (see below).
  4. Save and enable it for your target sites or all (*://*/*).

Script Header

// ==UserScript==
// @name         Website SpeedHack by poule_trempee
// @namespace    http://tampermonkey.net/
// @version      1.3.7
// @description  SpeedHack/FastForward open/close GUI with [Insert]
// @author       poule_trempee
// @match        *://*/*
// @grant        none
// ==/UserScript==

Console API Examples

// Enable the speedhack
window.siteSpeedController.setEnabled(true);

// Set speed to 2x
window.siteSpeedController.setSpeed(2);

// Check current speed
console.log(window.siteSpeedController.getSpeed());

// Disable speedhack
window.siteSpeedController.setEnabled(false);




poule_trempee
poule_trempee