Shortcuts works or not?Hello!
Someone have a good idea how to add tags automatically on xvideos new video upload page?
Copy paste not works.
Thanks!
// ==UserScript==
// @name XVIDEOS Tags
// @author cockwhistle
// @match https://www.xvideos.com/account/uploads/new
// ==/UserScript==
(function() {
'use strict';
// Set tags here
var tags = [];
$('#upload_form_tags_taglist').val(JSON.stringify(tags));
})();
var tags = ["amateur","solo","webcam"];
var tags = [];
$('#upload_form_tags_taglist').val(JSON.stringify(tags));
Thank you mate, i will try it later.Here's a quick userscript I wrote.
It will add the tags automatically when the page is loaded.
Use it with a userscript extension like tampermonkey.
Code:// ==UserScript== // @name XVIDEOS Tags // @author cockwhistle // @match https://www.xvideos.com/account/uploads/new // ==/UserScript== (function() { 'use strict'; // Set tags here var tags = []; $('#upload_form_tags_taglist').val(JSON.stringify(tags)); })();
Add your tags to the tags array.
For example:
Code:var tags = ["amateur","solo","webcam"];
Or you can just paste this into the console:
It will update the tags input value but it wont display on the frontend.Code:var tags = []; $('#upload_form_tags_taglist').val(JSON.stringify(tags));
is it possible to create a code that can remote upload videos to xvideo
what is that ?I have a script that does that. It's written in python and leverages selenium for remote browser automation