tumblr redirector

redirect Tumblr image urls to large size (1280)

What is tumblr redirector?

tumblr redirector is a Chrome extension developed by Jonathan Bao, and its main feature is "redirect Tumblr image urls to large size (1280)".

Download tumblr redirector Extension CRX File

Download tumblr redirector extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Automatically redirects image urls on Tumblr to large size.

For example, if you try to access https://foo.media.tumblr.com/bar/foo_bar_400.jpg
instead it will send you to https://foo.media.tumblr.com/bar/foo_bar_1280.jpg

Works for jpg, png but not gif. Modifies the url in the main address bar before the request is sent. chrome.webRequest.onBeforeRequest.addListener(
  redirect,
  {urls:[],types:["main_frame"]},
  ["blocking"]);

Author: Jonathan Bao                    

Extension Basic Information

Name tumblr redirector tumblr redirector
ID mifghbjicbjfgdegpdjdomibhiocidpc
Official URL https://chromewebstore.google.com/detail/tumblr-redirector/mifghbjicbjfgdegpdjdomibhiocidpc
Description redirect Tumblr image urls to large size (1280)
File Size 4.11 KB
Installation Count 29
Current Version 1.0
Last Updated 2018-07-10
Publish Date 2018-07-10
Developer Jonathan Bao
Email [email protected]
Payment Type free
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "redirect Tumblr image urls to large size (1280)",
    "manifest_version": 2,
    "name": "tumblr redirector",
    "version": "1.0",
    "author": "Jonathan Bao",
    "email": "[email protected]",
    "permissions": [
        "webRequest",
        "webRequestBlocking",
        "storage",
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}