-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
23 changed files
with
3,496 additions
and
6,733 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
root = true | ||
|
||
[*] | ||
charset = utf-8 | ||
end_of_line = crlf | ||
indent_size = 2 | ||
indent_style = space | ||
insert_final_newline = true | ||
max_line_length = 120 | ||
tab_width = 2 | ||
trim_trailing_whitespace = true | ||
|
||
[*.md] | ||
trim_trailing_whitespace = false |
This file was deleted.
Oops, something went wrong.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
VITE_PATH_EDGE="/usr/bin/microsoft-edge-stable" | ||
VITE_PATH_OPERA="/usr/bin/opera" |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
VITE_PATH_EDGE="/Applications/Microsoft Edge.app/Contents/MacOS/Microsoft Edge" | ||
VITE_PATH_OPERA="/Applications/Opera.app/Contents/MacOS/Opera" |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
VITE_PATH_EDGE="C:\Program Files (x86)\Microsoft\Edge\Application\msedge.exe" | ||
VITE_PATH_OPERA="USERPROFILE\AppData\Local\Programs\Opera\opera.exe" |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,48 +1,31 @@ | ||
|
||
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. | ||
|
||
.idea | ||
.vscode | ||
|
||
# dependencies | ||
node_modules | ||
.pnp | ||
.pnp.js | ||
|
||
# testing | ||
coverage | ||
|
||
#cache | ||
.turbo | ||
.next | ||
.vercel | ||
|
||
# misc | ||
.DS_Store | ||
*.pem | ||
|
||
# debug | ||
# Logs | ||
logs | ||
*.log | ||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* | ||
.pnpm-debug.log* | ||
pnpm-debug.log* | ||
lerna-debug.log* | ||
|
||
node_modules | ||
build | ||
stats.html | ||
stats-*.json | ||
.wxt | ||
|
||
# local env files | ||
chrome.env | ||
firefox.env | ||
opera.env | ||
edge.env | ||
opera.env | ||
|
||
# output | ||
build | ||
web-ext-artifacts | ||
|
||
# plasmo - https://www.plasmo.com | ||
.plasmo | ||
|
||
# bpp - http://bpp.browser.market/ | ||
keys.json | ||
|
||
# typescript | ||
.tsbuildinfo | ||
# Editor directories and files | ||
.vscode/* | ||
!.vscode/extensions.json | ||
.idea | ||
.DS_Store | ||
*.suo | ||
*.ntvs* | ||
*.njsproj | ||
*.sln | ||
*.sw? |
This file contains 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
This file contains 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
Binary file not shown.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,54 +1,50 @@ | ||
{ | ||
"name": "twitch-cp-bonus-collector", | ||
"displayName": "Twitch Channel Points Bonus Collector", | ||
"version": "2.0.16", | ||
"version": "2.1.0", | ||
"type": "module", | ||
"description": "Auto-clicks the Channel Points bonus button when it appears.", | ||
"author": "avi12", | ||
"author": "Avi <avi6106@gmail.com>", | ||
"repository": "https://github.com/avi12/twitch-cp-bonus-collector", | ||
"license": "GPL-3.0-or-later", | ||
"homepage": "https://github.com/avi12/twitch-cp-bonus-collector", | ||
"scripts": { | ||
"dev": "plasmo dev --verbose", | ||
"dev:firefox": "pnpm dev --target=firefox-mv3", | ||
"build": "plasmo build --minify", | ||
"build:firefox": "pnpm build --target=firefox-mv3", | ||
"package": "web-ext build --config web-ext-config.cjs --source-dir build/chrome-mv3-prod --filename twitch-cp-bonus-collector-{version}.zip", | ||
"package:firefox": "web-ext build --config web-ext-config.cjs --source-dir build/firefox-mv3-prod --filename twitch-cp-bonus-collector-{version}-firefox.zip", | ||
"package:self": "zip-self -o web-ext-artifacts/twitch-cp-bonus-collector-{version}-firefox-source.zip", | ||
"build-pack": "pnpm build && pnpm package", | ||
"build-pack:firefox": "concurrently \"pnpm build:firefox && pnpm package:firefox\" \"pnpm package:self\" --names \"Firefox build & pack,Firefox source pack\"", | ||
"build-pack:all": "concurrently \"pnpm build-pack\" \"pnpm build-pack:firefox\" --names Chromium,Firefox", | ||
"run-browser": "web-ext run --start-url https://www.twitch.tv/codinggarden --verbose --target", | ||
"run-firefox": "pnpm run-browser firefox-desktop --source-dir build/firefox-mv3-dev", | ||
"run-chromium": "pnpm run-browser chromium --source-dir build/chrome-mv3-dev", | ||
"run-edge:windows": "pnpm run-chromium --chromium-binary \"%ProgramFiles(x86)%\\Microsoft\\Edge\\Application\\msedge.exe\"", | ||
"run-opera:windows": "pnpm run-chromium --chromium-binary \"%LocalAppData%\\Programs\\Opera\\opera.exe\"" | ||
"dev": "wxt", | ||
"dev:rtl": "set VITE_LANG=he && wxt", | ||
"dev:firefox": "pnpm dev -b firefox --mv3", | ||
"dev:edge": "pnpm dev -b edge", | ||
"dev:opera": "pnpm dev -b opera", | ||
"build": "wxt build", | ||
"build:firefox": "pnpm build -b firefox --mv3", | ||
"package": "wxt zip", | ||
"package:firefox": "pnpm package -b firefox --mv3", | ||
"build:package": "pnpm build && pnpm package", | ||
"build:package:firefox": "pnpm build:firefox && pnpm package:firefox", | ||
"build:package:all": "concurrently \"pnpm build:package\" \"pnpm build:package:firefox\" --names Chromium,Firefox", | ||
"check": "svelte-check --tsconfig ./tsconfig.json", | ||
"postinstall": "wxt prepare" | ||
}, | ||
"dependencies": { | ||
"@plasmohq/storage": "^1.12.0", | ||
"plasmo": "0.89.2" | ||
"nouislider": "^15.8.1" | ||
}, | ||
"devDependencies": { | ||
"@eslint/js": "^9.10.0", | ||
"@types/chrome": "0.0.271", | ||
"@types/node": "22.5.5", | ||
"@eslint/js": "^9.12.0", | ||
"@types/chrome": "^0.0.277", | ||
"@typescript-eslint/eslint-plugin": "^8.8.0", | ||
"@typescript-eslint/parser": "^8.8.0", | ||
"autoprefixer": "^10.4.20", | ||
"concurrently": "^9.0.1", | ||
"eslint": "^9.10.0", | ||
"dotenv": "^16.4.5", | ||
"eslint": "^9.12.0", | ||
"eslint-config-avi12": "github:avi12/eslint-config-avi12", | ||
"globals": "^15.9.0", | ||
"prettier": "3.3.3", | ||
"svelte-eslint-parser": "^0.41.1", | ||
"typescript": "5.6.2", | ||
"typescript-eslint": "^8.5.0", | ||
"web-ext": "^8.2.0", | ||
"zip-self": "^0.6.3" | ||
"eslint-plugin-import": "^2.31.0", | ||
"globals": "^15.10.0", | ||
"postcss-nesting": "^13.0.0", | ||
"prettier": "^3.3.3", | ||
"prettier-plugin-svelte": "^3.2.7", | ||
"tslib": "^2.7.0", | ||
"typescript": "^5.6.2", | ||
"typescript-eslint": "^8.8.0", | ||
"wxt": "^0.19.11" | ||
}, | ||
"manifest": { | ||
"offline_enabled": true, | ||
"browser_specific_settings": { | ||
"gecko": { | ||
"id": "$PLASMO_PUBLIC_FIREFOX_EXT_ID" | ||
} | ||
} | ||
}, | ||
"packageManager": "pnpm@9.10.0+sha512.73a29afa36a0d092ece5271de5177ecbf8318d454ecd701343131b8ebc0c1a91c487da46ab77c8e596d6acf1461e3594ced4becedf8921b074fbd8653ed7051c" | ||
"packageManager": "pnpm@9.9.0+sha512.60c18acd138bff695d339be6ad13f7e936eea6745660d4cc4a776d5247c540d0edee1a563695c183a66eb917ef88f2b4feb1fc25f32a7adcadc7aaf3438e99c1" | ||
} |
Oops, something went wrong.