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/env python3 | |
| import argparse | |
| import configparser | |
| import os | |
| import shlex | |
| import subprocess | |
| import sys | |
| import textwrap | |
| PROGRAM_NAME = "url-runner" # Change the name here |
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 Google Meet Captions Logger -> .txt | |
| // @namespace meet-captions-to-txt | |
| // @version 0.1 | |
| // @description Collects Google Meet live captions text and downloads as a .txt file | |
| // @match https://meet.google.com/* | |
| // @grant none | |
| // ==/UserScript== | |
| (() => { |