This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==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== |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/python3 | |
| import json | |
| import re | |
| import requests | |
| from os import environ, path | |
| # Environment configurations | |
| APP_KEY = environ.get('APP_KEY') |