Skip to content

Instantly share code, notes, and snippets.

@vogler
Last active May 7, 2020 19:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vogler/d8461ff3b272c772527800763a772750 to your computer and use it in GitHub Desktop.
Save vogler/d8461ff3b272c772527800763a772750 to your computer and use it in GitHub Desktop.
Tampermonkey: AliExpress: auto-login via Facebook
// ==UserScript==
// @name AliExpress: auto-login
// @namespace https://gist.github.com/vogler
// @downloadURL https://gist.github.com/vogler/d8461ff3b272c772527800763a772750/raw/auto-login.aliexpress.tamper.js
// @version 0.1
// @description Auto-login via Facebook since it doesn't require entering a captcha
// @author Ralf Vogler
// @match *://login.aliexpress.com/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
document.querySelector('.sns-item.facebook').click()
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment