MicrostockGroup Sponsors


Author Topic: SS Dashboard Fix  (Read 18805 times)

0 Members and 1 Guest are viewing this topic.

DC


« on: February 17, 2017, 17:28 »
+6
I just haven't been able to get used to the new dashboard on SS.  They added a bunch of stuff to the top of the page that I don't really care about.

Profile picture front and center?
Unpaid earnings......right under unpaid earnings???
All time earnings in gigantic letters stretching all the way across the page?

I decided to make a Greasemonkey script to fix some of it and I thought I would post it here in case anyone is interested.

Here is a summary of what I changed:

It completely removes the following - the div element with the profile picture, the div element with unpaid earnings, the div element with all time earnings, and the div element for additional resources.

I also took the left hand column and floated it to the right.  This has two advantages.  The first one is that it moves uploads and announcements to the right hand side of the page which is where they were before and where I prefer them to be.  The second is that it moves the map over so that it is front and center where it should be.

The last thing I did was make the Unpaid Earnings button at the top right link to the earnings page like it used to do.

I made this based on my personal preferences and am providing it as is so if you don't like something about it fix it yourself.  :)


In Greasemonkey select New User Script
In the Includes box add the line: https://submit.shutterstock.com/dashboard*
I think Name and Namespace are required but I don't think it matters what you put in those.
Click OK and then copy and paste the following:

function doStuff() {
  document.getElementById('monthly-earnings-dropdown').href = "/earnings";
  document.getElementById('monthly-earnings-dropdown').removeAttribute("data-toggle");
  var x = document.getElementsByClassName("col-md-6 col-sm-12 hidden-xs");
  x[0].style.display = "none";
  x[1].style.display = "none";
  document.getElementById('earnings-summary-container').style.display = "none";
  document.getElementById('resources-blog-container').style.display = "none";
  document.getElementsByClassName("col-md-3 col-sm-4")[0].style.cssFloat = "right";
}

window.onload = doStuff();


angelawaye

  • Eat, Sleep, Keyword. Repeat

« Reply #1 on: February 17, 2017, 22:24 »
+9
It is a smokescreen to distract you from the real problems. They want our attention elsewhere...

Chichikov

« Reply #2 on: February 18, 2017, 04:31 »
0
Surely a nice script but I don't know how to install it under Tampermonkey on Chrome :(
(I think that you should give us the link to the script, not the script code itself)

___
There are also a lot of nice scripts developped by Deymos.HR here:
https://forums.submit.shutterstock.com/topic/87730-cool-script-print-names-of-download-locations/page-2?hl=scripts#entry1528326

« Last Edit: February 18, 2017, 05:13 by Chichikov »

« Reply #3 on: February 18, 2017, 04:56 »
+1
Brilliant!!!! But  can't install it.
When I get to Scratchpad (?) it says to type 'allow pasting' - but I don't know where to do this. Have tried assorted option....!
And then, I'm also not sure where exactly to paste the 'code' bit you give us.
Answers would be MUCH appreciated.
:)

« Reply #4 on: June 03, 2017, 17:36 »
0
I'm wondering if there is an update for the script for downloads. It has stopped working for me a while ago and I really miss it. The SS latest downloads is garbage. Just a quick glance at Deymos' script and you see instantly if there's been any downloads.

Chichikov

« Reply #5 on: June 04, 2017, 00:30 »
0
Deymos told (on the SS forum) that Shutterstock has forbidden him to publish new updates of the scripts

« Reply #6 on: June 04, 2017, 03:22 »
+13
I guess they can't stand a fact, that someone does a better job with their dashboard in 5 minutes, than their whole IT team in months.

« Reply #7 on: June 04, 2017, 08:25 »
+1
I guess they can't stand a fact, that someone does a better job with their dashboard in 5 minutes, than their whole IT team in months.

Perfect!

« Reply #8 on: June 04, 2017, 21:00 »
+2
Deymos told (on the SS forum) that Shutterstock has forbidden him to publish new updates of the scripts

Oh, I thought he just couldn't speak about them on the forum, I missed where he was not allowed to publish them. SS must be feeling very inadequate for them to even care.

« Reply #9 on: June 05, 2017, 04:19 »
+2
Deymos.HR's scripts are here:

https://gist.github.com/deymosD/ [nofollow]

Shutterstock.EnhanceDashboard.user.js - allows moving (and temporarily removing) divs on the dashboard and lists 10 most recent sales (no earnings anymore, sadly)
Shutterstock.NewEarnings.user.js - fixes earnings table
Shutterstock.FixKeywords.user.js - enables copy/paste of keywords.

easily modifiable. :)

« Reply #10 on: June 05, 2017, 10:30 »
0
not sure if they can stop anyone from writing scripts. its laughable if they try to, unfortunately, even though there is nothing in the contract about writing scripts, they can kick you out when they want to. if its about publishing stuff on the forum, then i can see their point.

« Reply #11 on: June 05, 2017, 11:03 »
0
Deymos.HR's scripts are here:

https://gist.github.com/deymosD/

Shutterstock.EnhanceDashboard.user.js - allows moving (and temporarily removing) divs on the dashboard and lists 10 most recent sales (no earnings anymore, sadly)
Shutterstock.NewEarnings.user.js - fixes earnings table
Shutterstock.FixKeywords.user.js - enables copy/paste of keywords.

easily modifiable. :)

Great! Thanks for the information! I was not aware that he had an update that made the last 10 list work again!
And that text conversion of keywords is nice addition!
« Last Edit: June 05, 2017, 11:14 by Zero Talent »

Chichikov

« Reply #12 on: June 08, 2017, 06:52 »
+1
Deymos told (on the SS forum) that Shutterstock has forbidden him to publish new updates of the scripts

Oh, I thought he just couldn't speak about them on the forum, I missed where he was not allowed to publish them. SS must be feeling very inadequate for them to even care.

Yes, you are right, I meant to publish them (giving links) on the Shutterstock forum.

« Reply #13 on: June 08, 2017, 07:16 »
0
This is awesome, I just installed this script and it is a new door to see realtime stats as well as one page earning show. Like it.
I used Tapermonkey

« Reply #14 on: July 14, 2017, 18:29 »
0
Deymos.HR's scripts are here:

https://gist.github.com/deymosD/

Shutterstock.EnhanceDashboard.user.js - allows moving (and temporarily removing) divs on the dashboard and lists 10 most recent sales (no earnings anymore, sadly)
Shutterstock.NewEarnings.user.js - fixes earnings table
Shutterstock.FixKeywords.user.js - enables copy/paste of keywords.

easily modifiable. :)

Thanks for the links, that has fixed my broken list of the last ten downloads. I'm very happy :)

derek

    This user is banned.
« Reply #15 on: July 15, 2017, 00:52 »
0
It is a smokescreen to distract you from the real problems. They want our attention elsewhere...

You could say that again!  haha!

rinderart

« Reply #16 on: July 15, 2017, 15:41 »
0
DEYMOS is as brilliant as they come.SS people have no clue compared.I have begged them to have him Look.
« Last Edit: July 15, 2017, 18:42 by rinderart »


« Reply #17 on: July 15, 2017, 19:14 »
0
Ummm..  can you see unsold images in the lifetime sales (top earners) sort like SS used to show? 

« Reply #18 on: August 27, 2017, 20:28 »
0
Has this broken again for everyone else? None of the scripts seem to be working so the page looks terrible!

derek

    This user is banned.
« Reply #19 on: August 28, 2017, 02:06 »
+2
Is this to distract us from falling earnings bad interior political problems and people leaving jumping a sinking ship! conning us beyond beliefs?????  is all a bunch of horse sheit!

« Reply #20 on: December 14, 2017, 02:18 »
0
Another sad thing with shutterstock. The following script stopped working in firefox.
https://gist.github.com/deymosD/126aa0a849de4196547ef5662684b270/raw/a8d13fad3d8decc18d871c7d3bb9458dfb5cbdd9/Shutterstock.NewEarnings.user.js

Does anyone know what to do?

« Reply #21 on: December 14, 2017, 02:30 »
0
May be the problem is that?

line 3 // @namespace

expected [ \t \n] but end of input found

« Reply #22 on: December 14, 2017, 07:30 »
0
 sod sails does not show on world map?!

JimP

« Reply #23 on: December 15, 2017, 13:16 »
+1
Is this to distract us from falling earnings bad interior political problems and people leaving jumping a sinking ship! conning us beyond beliefs?????  is all a bunch of horse sheit!

Why are you talking about Istock Getty on the SS forum?  ;)

« Reply #24 on: January 06, 2018, 01:03 »
0
It seems that all gradually accept SS innovations?

derek

    This user is banned.
« Reply #25 on: January 06, 2018, 02:57 »
+1
Is this to distract us from falling earnings bad interior political problems and people leaving jumping a sinking ship! conning us beyond beliefs?????  is all a bunch of horse sheit!

Why are you talking about Istock Getty on the SS forum?  ;)

I cant remember??  I together with some 50 others involved in that beef with Scott and Laurin ( representing us) got written off by Scott who just days later got the boot from SS!

We all got banned and no one returned. Even so the SS forum is a joke full of wooyay people over a 0.25 sale.

« Reply #26 on: January 06, 2018, 04:18 »
+4
You're a joke as well.

I only come here now and then, and when I do, sure enough, derek or rinderart whining again.


Chichikov

« Reply #27 on: January 06, 2018, 04:36 »
0
It seems that all gradually accept SS innovations?
Yes it is always like this, sheep rant a lot at the beginning and then accept the status quo

« Reply #28 on: January 06, 2018, 04:43 »
+1
It seems that all gradually accept SS innovations?
Yes it is always like this, sheep rant a lot at the beginning and then accept the status quo
We don't have a choice and in the end the $$$s talk louder and despite all the moaning SS remain by far the best selling Mstock site for most.

« Reply #29 on: January 07, 2018, 15:35 »
0
It seems that all gradually accept SS innovations?
Yes it is always like this, sheep rant a lot at the beginning and then accept the status quo
We don't have a choice and in the end the $$$s talk louder and despite all the moaning SS remain by far the best selling Mstock site for most.
Until when?
For me AS is getting closer months after months , slowly but surely.

Shelma1

  • stockcoalition.org
« Reply #30 on: January 07, 2018, 15:46 »
+3
It seems that all gradually accept SS innovations?

What can you do? A whole lot of people complained, but it's clear they're not going back to the faster interface. Uploading is now slow and clunky, but there's no alternative.

It does make me like Adobe more, tho.

« Reply #31 on: January 08, 2018, 08:08 »
0
It seems that all gradually accept SS innovations?

What can you do? A whole lot of people complained, but it's clear they're not going back to the faster interface. Uploading is now slow and clunky, but there's no alternative.

It does make me like Adobe more, tho.

Do you mean that Greasemonkey script
https://gist.github.com/deymosD/126aa0a849de4196547ef5662684b270/raw/a8d13fad3d8decc18d871c7d3bb9458dfb5cbdd9/Shutterstock.NewEarnings.user.js
still works in your system? In my case it stopped working and now I must click many times. I see that no one else writes about the same problem. I wish I could pay someone who can offer script that would work again.

« Reply #32 on: January 11, 2018, 09:40 »
+1
It seems that all gradually accept SS innovations?

What can you do? A whole lot of people complained, but it's clear they're not going back to the faster interface. Uploading is now slow and clunky, but there's no alternative.

It does make me like Adobe more, tho.

Do you mean that Greasemonkey script
https://gist.github.com/deymosD/126aa0a849de4196547ef5662684b270/raw/a8d13fad3d8decc18d871c7d3bb9458dfb5cbdd9/Shutterstock.NewEarnings.user.js
still works in your system? In my case it stopped working and now I must click many times. I see that no one else writes about the same problem. I wish I could pay someone who can offer script that would work again.

The scripts created by Deymos are still working for me on this PC.
Deymos had to remove the $ value from the last 10 sales list, since it is not reported by the SS query, anymore. Otherwise, the list still shows the thumbnail, location name and time of sale.

On the earnings page, all sales are combined in a single tab and it can be ordered by your chosen criteria: ID (ie most recent upload), earnings or number of downloads for the day.

The 3rd Deymos script I found useful is the conversion of the keywords list of any SS image in text format, making easy a copy/paste action.
« Last Edit: January 11, 2018, 15:16 by Zero Talent »

« Reply #33 on: January 12, 2018, 01:19 »
0
I've reinstalled the script and now it is working. ;D I don't know why it stopped working before.

dpimborough

« Reply #34 on: January 12, 2018, 03:34 »
0
You're a joke as well.

I only come here now and then, and when I do, sure enough, derek or rinderart whining again.

Yeah and every time you appear here you have something vicious to say

« Reply #35 on: January 12, 2018, 12:54 »
0
The truth is like that sometimes. I'm sorry if you can't handle the truth.

dpimborough

« Reply #36 on: January 12, 2018, 14:15 »
0
The truth is like that sometimes. I'm sorry if you can't handle the truth.

Oh I can handle the truth but you just find the most unpleasant way to get your opinions across don't they have manners in your part of the world?


« Reply #37 on: January 12, 2018, 14:18 »
0
Let's go private

« Reply #38 on: January 13, 2018, 02:09 »
+1
The truth is like that sometimes. I'm sorry if you can't handle the truth.
You're talking about your truth.

dpimborough

« Reply #39 on: January 13, 2018, 08:00 »
0
Let's go private

Lets not I don't do private you want to insult people in public then learn some manners that's all there is to it


 

Related Topics

  Subject / Started by Replies Last post
8 Replies
4376 Views
Last post February 08, 2012, 18:44
by Anita Potter
20 Replies
8080 Views
Last post May 29, 2014, 05:18
by luissantos84
3 Replies
2651 Views
Last post February 20, 2017, 23:09
by k_t_g
5 Replies
4697 Views
Last post January 24, 2019, 19:08
by marthamarks
7 Replies
4322 Views
Last post August 24, 2019, 05:04
by georgep7

Sponsors

Mega Bundle of 5,900+ Professional Lightroom Presets

Microstock Poll Results

Sponsors