Skip to content

Instantly share code, notes, and snippets.

@camjac251
camjac251 / sora-auto-unmute.user.js
Last active October 29, 2025 21:48
Sora Post Auto Unmute userscript
// ==UserScript==
// @name Sora Post Auto Unmute
// @namespace http://tampermonkey.net/
// @version 1.1
// @description Auto-unmutes Sora posts on load and pauses videos when tab is unfocused.
// @match https://sora.chatgpt.com/*
// @grant none
// @run-at document-end
// ==/UserScript==
#!/usr/bin/python3
import json
import re
import requests
from os import environ, path
# Environment configurations
APP_KEY = environ.get('APP_KEY')