D
Deleted member 1268968
Guest
I'm not sure if anyone has created something like this before but I thought I'd share a little guide of how I keep track of my xvideo accounts as follows;
I think allot of people would benefit from this with keeping track of ghosted accounts and accounts that get random bans without having to log into the account to check.
First things first you will need to create or already have an xvideos accounts along with a google account to create google sheets. You can design this sheet however way you like or you can copy mine..whatever floats your boat.
Next under the profile column I put the following;
(replace with your xvideos account name)
Followed by the email address you registered with in the email column.
===
Secondly I use IMPORT XML functions in the videos/subscribers and views columns to track my accounts stats.
For VIDEOS use the following formula:
===
For SUBSCRIBERS use the following formula:
===
And lastly for VIEWS use the following;
===
I have found with fresh accounts you will get N/A results in the columns but give it a day for the stats to be updated. I also noticed if you see 0 subscribers and views stuck on 30 this will be a hint that your account is ghosted...without the need of logging in! Also when an account is banned all IMPORTXML functions will return with N/A results.
Enjoy!
I think allot of people would benefit from this with keeping track of ghosted accounts and accounts that get random bans without having to log into the account to check.
First things first you will need to create or already have an xvideos accounts along with a google account to create google sheets. You can design this sheet however way you like or you can copy mine..whatever floats your boat.
Next under the profile column I put the following;
Code:
https://www.xvideos.com/profiles/your_profile_name_here#_tabAboutMe
Followed by the email address you registered with in the email column.
===
Secondly I use IMPORT XML functions in the videos/subscribers and views columns to track my accounts stats.
For VIDEOS use the following formula:
Code:
=IMPORTXML("https://www.xvideos.com/profiles/your_profile_name_here#_tabAboutMe", "//*[@id='tab-videos']/span[2]")
===
For SUBSCRIBERS use the following formula:
Code:
=IMPORTXML("https://www.xvideos.com/profiles/your_profile_name_here#_tabAboutMe", "//*[@id='pinfo-subscribers']/span")
===
And lastly for VIEWS use the following;
Code:
=IMPORTXML("https://www.xvideos.com/profiles/your_profile_name_here#_tabAboutMe", "//*[@id='pinfo-videos-views']/span")
===
I have found with fresh accounts you will get N/A results in the columns but give it a day for the stats to be updated. I also noticed if you see 0 subscribers and views stuck on 30 this will be a hint that your account is ghosted...without the need of logging in! Also when an account is banned all IMPORTXML functions will return with N/A results.
Enjoy!
Last edited by a moderator: