https://github.com/nick2bad4u/stravaautoauthorize
Auto authorizes Strava apps via GreaseMoney or Tampermonkey
https://github.com/nick2bad4u/stravaautoauthorize
strava userscript userscripts
Last synced: 11 months ago
JSON representation
Auto authorizes Strava apps via GreaseMoney or Tampermonkey
- Host: GitHub
- URL: https://github.com/nick2bad4u/stravaautoauthorize
- Owner: Nick2bad4u
- License: unlicense
- Created: 2024-06-11T03:18:15.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-12-04T16:46:03.000Z (over 1 year ago)
- Last Synced: 2024-12-04T17:41:28.401Z (over 1 year ago)
- Topics: strava, userscript, userscripts
- Language: JavaScript
- Homepage: https://strava.github.typpi.online/
- Size: 159 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://github.com/Nick2bad4u/StravaAutoAuthorize/actions/workflows/codeql.yml)
[](https://github.com/Nick2bad4u/StravaAutoAuthorize/actions/workflows/dependabot/dependabot-updates)
[](https://github.com/Nick2bad4u/StravaAutoAuthorize/actions/workflows/dependency-review.yml)
[](https://github.com/Nick2bad4u/StravaAutoAuthorize/actions/workflows/pages/pages-build-deployment)
[](https://github.com/Nick2bad4u/StravaAutoAuthorize/actions/workflows/scorecards.yml)

# StravaAutoAuthorize
Auto authorizes Strava apps via GreaseMoney or Tampermonkey
// ==UserScript==
// @name Strava-Auto-Authorize
// @namespace nick2bad4u
// @description Auto allows Strava apps without having to click "authorize" every single time.
// @author Nick2bad4u
// @match https://www.strava.com/oauth/authorize*
// @icon https://www.google.com/s2/favicons?sz=64&domain=strava.com
// @version 2.0
// @grant none
// @homepage https://github.com/Nick2bad4u/StravaAutoAuthorize
// @homepageURL https://github.com/Nick2bad4u/StravaAutoAuthorize
// @supportURL https://github.com/Nick2bad4u/StravaAutoAuthorize/issues
// @downloadURL https://raw.githubusercontent.com/Nick2bad4u/StravaAutoAuthorize/main/StravaAutoAuthorize.js
// @license CC-BY-SA-3.0; http://creativecommons.org/licenses/by-sa/3.0/
// @license MIT
// ==/UserScript==
setTimeout(function() {
document.getElementsByClassName("btn")[0].click();
}, 1000)