New xvideos.com upload page

cypdru

Registered Member
Joined
Jun 25, 2011
Messages
87
Reaction score
14
Hello!
Someone have a good idea how to add tags automatically on xvideos new video upload page?
Copy paste not works.
Thanks!
 
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:
Code:
var tags = [];
$('#upload_form_tags_taglist').val(JSON.stringify(tags));
It will update the tags input value but it wont display on the frontend.
 
is it possible to create a code that can remote upload videos to xvideo
 
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:
Code:
var tags = [];
$('#upload_form_tags_taglist').val(JSON.stringify(tags));
It will update the tags input value but it wont display on the frontend.
Thank you mate, i will try it later.
 
Back
Top