-
Notifications
You must be signed in to change notification settings - Fork 478
Expand file tree
/
Copy pathBookmarklet Tools
More file actions
30 lines (24 loc) · 1.26 KB
/
Copy pathBookmarklet Tools
File metadata and controls
30 lines (24 loc) · 1.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
Copy and Paste the Javascript bookmarklets below to create new bookmarks in your browser.
These bookmarklets will facilitate Tumblr investigations.
In order for the bookmarklets to work, you must be currently browsing the home page of a Tumblr blog (such as example.tumblr.com)
at the time you click on the bookmark button.
Tumblr Archive
javascript: { var currentLocation = window.location.hostname;
var newLocation = currentLocation + "/archive";
window.location.replace("http://" + newLocation); }
Tumblr Full Photo Viewer
javascript: { var currentLocation = window.location.hostname;
var newLocation = currentLocation + "/avatar/512";
window.location.replace("https://api.tumblr.com/v2/blog/" + newLocation); }
Tumblr Likes
javascript: { var currentLocation = window.location.hostname;
var newLocation = currentLocation + "/likes";
window.location.replace("http://" + newLocation); }
Tumblr Following
javascript: { var currentLocation = window.location.hostname;
var newLocation = currentLocation + "/following";
window.location.replace("http://" + newLocation); }
Tumblr Followers
javascript: { var currentLocation = window.location.hostname;
var newLocation = currentLocation + "/followers";
window.location.replace("http://" + newLocation); }