tumblr redirector

redirect Tumblr image urls to large size (1280)

tumblr redirector क्या है?

tumblr redirector Jonathan Bao द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "redirect Tumblr image urls to large size (1280)"।

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में tumblr redirector एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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                    

एक्सटेंशन की मूल जानकारी

नाम tumblr redirector tumblr redirector
ID mifghbjicbjfgdegpdjdomibhiocidpc
आधिकारिक URL https://chromewebstore.google.com/detail/tumblr-redirector/mifghbjicbjfgdegpdjdomibhiocidpc
विवरण redirect Tumblr image urls to large size (1280)
फ़ाइल का आकार 4.11 KB
स्थापना संख्या 29
वर्तमान संस्करण 1.0
अंतिम अपडेट 2018-07-10
प्रकाशन तिथि 2018-07-10
डेवलपर Jonathan Bao
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ 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"
        ]
    }
}