tumblr redirector

redirect Tumblr image urls to large size (1280)

Was ist tumblr redirector?

tumblr redirector ist eine Chrome-Erweiterung, die von Jonathan Bao entwickelt wurde, und ihr Hauptmerkmal ist "redirect Tumblr image urls to large size (1280)".

tumblr redirector-Erweiterungs-CRX-Datei herunterladen

Laden Sie tumblr redirector-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name tumblr redirector tumblr redirector
ID mifghbjicbjfgdegpdjdomibhiocidpc
Offizielle URL https://chromewebstore.google.com/detail/tumblr-redirector/mifghbjicbjfgdegpdjdomibhiocidpc
Beschreibung redirect Tumblr image urls to large size (1280)
Dateigröße 4.11 KB
Installationsanzahl 29
Aktuelle Version 1.0
Letztes Update 2018-07-10
Veröffentlichungsdatum 2018-07-10
Entwickler Jonathan Bao
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
        ]
    }
}