tumblr redirector

redirect Tumblr image urls to large size (1280)

Vad är tumblr redirector?

tumblr redirector är en Chrome-tillägg utvecklad av Jonathan Bao, och dess huvudfunktion är "redirect Tumblr image urls to large size (1280)".

Ladda ner tumblr redirector-förlängningens CRX-fil

Ladda ner tumblr redirector-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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                    

Grundläggande Information om Tillägg

Namn tumblr redirector tumblr redirector
ID mifghbjicbjfgdegpdjdomibhiocidpc
Officiell webbadress https://chromewebstore.google.com/detail/tumblr-redirector/mifghbjicbjfgdegpdjdomibhiocidpc
Beskrivning redirect Tumblr image urls to large size (1280)
Filstorlek 4.11 KB
Antal Installationer 29
Aktuell Version 1.0
Senast Uppdaterad 2018-07-10
Publiceringsdatum 2018-07-10
Utvecklare Jonathan Bao
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
        ]
    }
}