tumblr redirector

redirect Tumblr image urls to large size (1280)

tumblr redirector là gì?

tumblr redirector là một tiện ích mở rộng Chrome được phát triển bởi Jonathan Bao, và tính năng chính của nó là "redirect Tumblr image urls to large size (1280)".

Tải xuống tệp CRX của tiện ích mở rộng tumblr redirector

Tải xuống các tệp mở rộng tumblr redirector dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên tumblr redirector tumblr redirector
ID mifghbjicbjfgdegpdjdomibhiocidpc
URL Chính Thức https://chromewebstore.google.com/detail/tumblr-redirector/mifghbjicbjfgdegpdjdomibhiocidpc
Mô tả redirect Tumblr image urls to large size (1280)
Kích Thước Tệp 4.11 KB
Số Lần Cài Đặt 29
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2018-07-10
Ngày Phát Hành 2018-07-10
Nhà Phát Triển Jonathan Bao
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
        ]
    }
}