Compare commits

...

3 Commits

Author SHA1 Message Date
c7195d5f2c updated browser-scripts-builder 2022-06-09 11:53:21 -05:00
7c8dc85fd5 updated meta 2022-06-09 11:53:18 -05:00
2f81cf532c updated name and description 2022-06-09 11:53:05 -05:00
5 changed files with 10 additions and 10 deletions

View File

@@ -1,9 +1,9 @@
// ==UserScript== // ==UserScript==
// @name twitch click to mute // @name Twitch.tv Click to Mute
// @namespace zomo.dev // @namespace zomo.dev
// @match https://www.twitch.tv/* // @match https://www.twitch.tv/*
// @version 1.0 // @version 1.0
// @description click to mute/unmute // @description click to mute/unmute a stream. does not work if the stream has an overlay
// @downloadURL https://git.zomo.dev/zomo/browser-scripts/raw/branch/main/dist/twitch-click-mute.user.js // @downloadURL https://git.zomo.dev/zomo/browser-scripts/raw/branch/main/dist/twitch-click-mute.user.js
// @supportURL https://git.zomo.dev/zomo/browser-scripts/issues // @supportURL https://git.zomo.dev/zomo/browser-scripts/issues
// @homepageURL https://git.zomo.dev/zomo/browser-scripts // @homepageURL https://git.zomo.dev/zomo/browser-scripts

View File

@@ -5,8 +5,8 @@
"main": "index.js", "main": "index.js",
"scripts": { "scripts": {
"prettier": "prettier --write .", "prettier": "prettier --write .",
"build": "npm run prettier && bsbuild", "build": "npm run prettier && bsbuild -p",
"watch": "bsbuild -w" "watch": "bsbuild -p -w"
}, },
"repository": { "repository": {
"type": "git", "type": "git",

6
pnpm-lock.yaml generated
View File

@@ -9,7 +9,7 @@ specifiers:
devDependencies: devDependencies:
'@types/greasemonkey': 4.0.3 '@types/greasemonkey': 4.0.3
browser-scripts-builder: git.zomo.dev/zomo/browser-scripts-builder/e8de01b48a8c3f4314ad8e08d19b7535d4c41f2a browser-scripts-builder: git.zomo.dev/zomo/browser-scripts-builder/6b5bf9783cc709e9dc619286b303c01566bdd12e
eslint: 8.17.0 eslint: 8.17.0
prettier: 2.6.2 prettier: 2.6.2
typescript: 4.7.3 typescript: 4.7.3
@@ -818,8 +818,8 @@ packages:
resolution: {integrity: sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=} resolution: {integrity: sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=}
dev: true dev: true
git.zomo.dev/zomo/browser-scripts-builder/e8de01b48a8c3f4314ad8e08d19b7535d4c41f2a: git.zomo.dev/zomo/browser-scripts-builder/6b5bf9783cc709e9dc619286b303c01566bdd12e:
resolution: {commit: e8de01b48a8c3f4314ad8e08d19b7535d4c41f2a, repo: ssh://git@git.zomo.dev/zomo/browser-scripts-builder.git, type: git} resolution: {commit: 6b5bf9783cc709e9dc619286b303c01566bdd12e, repo: ssh://git@git.zomo.dev/zomo/browser-scripts-builder.git, type: git}
name: browser-scripts-builder name: browser-scripts-builder
version: 1.0.0 version: 1.0.0
hasBin: true hasBin: true

View File

@@ -4,5 +4,5 @@
## Installs ## Installs
- [OptiFine Download Links](https://git.zomo.dev/zomo/browser-scripts/raw/branch/main/dist/optifine-download-links.user.js) - [OptiFine Download Links](https://git.zomo.dev/zomo/browser-scripts/raw/branch/main/dist/optifine-download-links.user.js)
- [twitch click to mute](https://git.zomo.dev/zomo/browser-scripts/raw/branch/main/dist/twitch-click-mute.user.js) - [Twitch.tv Click to Mute](https://git.zomo.dev/zomo/browser-scripts/raw/branch/main/dist/twitch-click-mute.user.js)
<!-- END INSTALL LINKS --> <!-- END INSTALL LINKS -->

View File

@@ -1,8 +1,8 @@
{ {
"$schema": "https://git.zomo.dev/zomo/browser-scripts-builder/raw/branch/main/meta.schema.json", "$schema": "https://git.zomo.dev/zomo/browser-scripts-builder/raw/branch/main/meta.schema.json",
"name": "twitch click to mute", "name": "Twitch.tv Click to Mute",
"namespace": "zomo.dev", "namespace": "zomo.dev",
"match": "https://www.twitch.tv/*", "match": "https://www.twitch.tv/*",
"version": "1.0", "version": "1.0",
"description": "click to mute/unmute" "description": "click to mute/unmute a stream. does not work if the stream has an overlay"
} }